问题描述
|
我已经有了django + wsgi的扩展,可以很好地进行开发和生产。唯一的问题是,当我对buildout.cfg进行更改或添加并必须运行bin / buildout时,从构建开始到完成为止,网站都会脱机。这可能需要5分钟以上的时间。
有没有办法在生产中优雅地进行扩建?也许我不知道的参数会在不先卸载所有内容的情况下运行构建?该站点在一台Web服务器上运行。负载平衡器和额外的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仅会更新已更改配置的零件(或在愚蠢的配方实现情况下)。一种选择是将构建配置复制/签出到新位置,然后重新运行构建,然后停止旧实例,然后在新安装上重新启动实例。在某些情况下,我们会维护类似
/data/buildout_<date1>
/data/buildout_<date2>
/data/current
其中\'current \'是当前\'buildout_ \'安装的符号链接。
当然,也可以选择在负载均衡器后面运行多个实例,在扩展阶段将实例从均衡器中取出。