gpt4 book ai didi

python - 通过扩建和最少的停机时间部署到生产环境?

转载 作者:太空狗 更新时间:2023-10-30 03:07:09 29 4
gpt4 key购买 nike

我有一个使用 django + wsgi 的扩展,它在开发和生产中运行良好。唯一的问题是,当我对 buildout.cfg 进行更改或添加并且必须运行 bin/buildout 时,网站会从 buildout 开始到完成时离线。这可能需要 5 分钟以上的时间。

有没有办法在生产中优雅地运行构建?也许我不知道的一个参数会在不先卸载所有内容的情况下运行构建?该网站在一台网络服务器上运行。负载平衡器和额外的 Web 服务器将是一个不错的解决方案,但目前不可行。

欢迎对我的构建脚本提出任何其他意见/建议/批评。

谢谢!

这是我的 buildout.cfg:

[buildout]
download-cache = downloads
unzip = true
parts =
scripts
django
djangoprod

eggs =
${scripts:eggs}
${pipscripts:eggs}

[scripts]
recipe = zc.recipe.egg
unzip = true
download-cache = ${buildout:download-cache}
eggs =
ipython
docutils
feedparser
pygments
South
django-grappelli
django-extensions
django-mobile
django-photologue
django-filebrowser
django-indexer
django-paging
django-templatetag-sugar
django-sentry
MySQL-python

find-links =
http://dist.repoze.org/
http://github.com/
http://bitbucket.org/
http://googlecode.com/
http://surfnet.dl.sourceforge.net/

[pipscripts]
recipe = gp.recipe.pip
unzip = true
download-cache = ${buildout:download-cache}
editables =
hg+https://bitbucket.org/ubernostrum/django-registration#egg=django_registration
git://github.com/jtauber/django-mailer.git#egg=django_mailer
eggs =
django-registration
django-mailer
PIL
install =
http://effbot.org/downloads/Imaging-1.1.7.tar.gz

[django]
recipe = djangorecipe
download-cache = ${buildout:download-cache}
eggs = ${buildout:eggs}
version = 1.3
project = project

[djangoprod]
recipe = djangorecipe
download-cache = ${django:download-cache}
version = ${django:version}
settings = production
wsgi = true
eggs = ${django:eggs}
project = ${django:project}

最佳答案

Buildout 只会更新配置已更改的部分(或者在愚蠢的配方实现的情况下)。一种选择是将构建配置复制/ checkout 到新位置,重新运行构建,然后停止旧实例,然后在新安装上重新启动实例。在某些情况下,我们会维护安装

/data/buildout_<date1>
/data/buildout_<date2>
/data/current

其中“current”是指向当前“buildout_”安装的符号链接(symbolic link)。

当然:在负载均衡器后面运行多个实例,您可以在构建阶段从均衡器中删除一个实例。

关于python - 通过扩建和最少的停机时间部署到生产环境?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6112682/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com