我有一个由nginx服务的带有uwsgi的正在运行的Django应用程序。我在许多应用程序(https://github.com/abidibo/cookiecutter-django)中使用相同的环境。我已将postfix配置为在localhost上接收,而django配置为通过它发送电子邮件。
我有一个视图,该视图在收到POST请求时会创建一些文件并发送电子邮件。
发生的事情是,在处理POST请求之后,服务器返回了502页,并发送了多封电子邮件(近60封电子邮件)。并非每次都发生,只是几次,而且我无法在本地环境中重现该错误。
我不知道发生了什么,我的意思是,如果django和uwsgi或postfix本身之间发生超时,那么为什么要发送所有这些电子邮件,为什么要多次执行代码?
在应用程序日志中,我看到一个工人死亡:
- *** HARAKIRI ON WORKER 4 (pid: 8836, try: 1) ***
- HARAKIRI !!! worker 4 status !!!
- HARAKIRI [core 7] 188.92.61.228 - POST /xxx/xxx/xxx/4/ since 1549027535
- HARAKIRI !!! end of worker 4 status !!!
DAMN ! worker 4 (pid: 8836) died, killed by signal 9 :( trying respawn ...
Respawned uWSGI worker 4 (new pid: 21942)
在nginx错误日志中,我看到:
[error] 2565#2565: *19983 upstream prematurely closed connection while reading response header from upstream, client: xx.xx.xx.xx, server: xxx.xxx.com, request: "POST /xxx/xxx/xx/4/ HTTP/1.1", upstream: "uwsgi://unix:/tmp/uwsgi_xxx.sock:", host: "xxx.xxx.com", referrer: "http://xxx.xxx.com/xxx/xxx/xx/4/"
这是帖子查看功能的摘录
def post(self, request, pk):
# stuff...
try:
# stuff...
if request.POST.get('send_mail', False) and request.POST.get(
'destinatari', ''):
send_invoice_mail(fattura, [
e.strip()
for e in request.POST.get('destinatari', '').split(',')
])
messages.add_message(
request, messages.SUCCESS,
'Nota di Credito cliente generata con successo')
messages.add_message(
request, messages.SUCCESS,
'La nota di credito è stata correttamente inserita in prima nota'
)
if request.POST.get('send_mail', False):
messages.add_message(request, messages.SUCCESS,
'E-mail correttamente inviata')
return redirect('/admin/fatture/notacreditouscitacliente/')
except Exception as e:
# stuff...
messages.add_message(request, messages.WARNING, str(e))
return redirect(
'/admin/fatture/notacreditoentratafornitoreprodotti')
我们非常欢迎向我指出正确方向的任何提示,