当uwsgi重启时,我如何才能在不延迟重启的情况下迅速清理旧的Python工作器中的资源?

When uwsgi is restarted, how can I tidy up resources in my old Python workers promptly and not delay the restart?(当uwsgi重启时,我如何才能在不延迟重启的情况下迅速清理旧的Python工作器中的资源?)
本文介绍了当uwsgi重启时,我如何才能在不延迟重启的情况下迅速清理旧的Python工作器中的资源?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个简单的Python uwsgi应用程序,它遵循基本模式:

def application(env, start_response):
    ... do something ...
    ... create some threads ...
    ... handover the work to the threads ...
    start_response('200 OK', [('Content-Type','text/html')])
    return result
我的系统管理员抱怨我的应用程序没有处理关机,每次他想要重新启动uwsgi服务时,他都必须等待uwsgi的超时来终止应用程序进程。显然,这可能需要长达30秒的时间,在这段时间内服务不可用。

当uwsgi想要关闭应用程序时,它是否会向应用程序发送特定的信号或调用?我该如何处理?

推荐答案

def goodbye():
    print "Goodbye from worker %d" % uwsgi.worker_id()

uwsgi.atexit = goodbye

或this standard python module

这篇关于当uwsgi重启时,我如何才能在不延迟重启的情况下迅速清理旧的Python工作器中的资源?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)