-
Notifications
You must be signed in to change notification settings - Fork 7.8k
CONF Var log_limit and fpm_log_write show error "the log buffer is full ..." #12302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
The log_limit is currently used only for worker output buffer handled by zlog. We actually never allocate full limit unless the message is that long. The buffer is extended only to cover the longest mesage so limit can be set very high if people want it unlimited - theoretical it can be up to INT_MAX. So allocating this in the stack frame would not be exactly ideal. I have got a plan to use zlog for access logs and use common logic for both which will have some other advantages. |
@bukka Hello. Did you create some PR for access log length config? I would happily vote on it if possible. Thanks |
@piotrekkr No, I still didn't get to it. You can vote on this issue. I usually give a bit higher priority to the issues with higher number of 👍 |
@bukka Did not know that 👍 are taken into account. Good to know. Upvoted this issue. Thanks. |
Hi Team, I've been wondering why my access logs are getting truncated despite Documentation is poorly describes |
Description
Hello everybody.
Hum... I trying understand why so old bug/unexpected-behavior yet reside FPM software slice.
I can see that Config Variable
log_limit
can be set, but ... none code exist for using it value!Several and several reports at foruns... but no definitive solution for that.
I'm crazy, or blind... or something like that.... But, for me ... a simple patch would be solve
years of complaints about this almost "miserable" behavior in Log generation.
Yes... I looked into code for every version at Git...
I be using 8.1, but lasted version seems the same problem.
So... Thinking simply, and perhaps stupid... My patch for that to would be:
Well...
alloca
function maybe not be too Standard in all system.And is possible too add
assert()
statement in case some fault.Or, use some like
static buffer ...
, that it will turn be on global with local access only.Please... tell me that I'm wrong...
Some solution is needed for this problem, that has been going on since version 7 (before ?).
The text was updated successfully, but these errors were encountered: