gpt4 book ai didi

django - unicorn 没 react

转载 作者:行者123 更新时间:2023-12-03 15:49:27 27 4
gpt4 key购买 nike

我正在使用 Gunicorn 为 Django 应用程序提供服务,它工作正常,直到我将其超时时间从 30 秒更改为 900000 秒,我不得不这样做,因为我有一个用例需要上传和处理一个巨大的文件(过程需要更多在某些情况下超过 30m)但是在此更改之后 Gunicorn 在几个小时后没有响应,我想问题是所有 worker (30 岁)都会在这段时间后忙于一些请求,奇怪的是即使我不这样做也会发生根本不运行那么长的请求,它发生在 django admin 中的正常探索中。我想知道是否有办法监控 gunicorn 上的请求并查看工作人员忙于哪些请求,我想找出让他们忙碌的请求。我试过--log-file=- --log-level=debug但它没有说明任何有关请求的信息,我需要更详细的日志。

最佳答案

从最新的 Gunicorn 文档中,您可以在 cmd 行/脚本中使用:

--log-file - ("-" means log to stderr)
--log-level debug

或者在配置文件中你可以使用:
errorlog = '-'
accesslog = '-'
loglevel = 'debug'

但没有提及您在问题中指定的参数格式:
--log-file=- 
--log-level=debug

访问的默认日志是“无”( ref),所以在黑暗中拍摄,但这可以解释为什么没有收到详细的日志信息。这是 sample config file来自 Gunicorn 源,最新的 Gunicorn config docs .

此外,您可能想查看 changing your logging configuration在 Django 中。

关于django - unicorn 没 react ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30137702/

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