Add support for buffering is scripted logs

Eran Kornblau eran.kornblau at kaltura.com
Mon Aug 7 10:36:19 UTC 2017


Hi all,

The attached patch adds support for log buffering when using variables in the access log file name.

The use case is this - we use nginx to receive analytics beacons and write them to the access log.
We'd like to have a log file per hour that contains the logs of the specific hour. If we use some external 
script to perform log rotate, we cannot avoid log lines slipping between adjacent files.
It's important for us to have the log lines partitioning accurate, in case we need to reindex a specific 
hour to the database.
Scripted logs seem perfect for this, but we don't want to give up on log compression, since the 
number of events can be high.

The patch relies on the open file cache to keep the context (buffer + flush event) of each file.
In order to do that, I added the ability to register callbacks in open file cache for these events:
1. init - new cached file object created
2. flush - the file handle of a cached file is closed
3. free - the cached file is destroyed
The context is allocated right after the ngx_cached_open_file_t struct, this was done in order to avoid
increasing the size of the ngx_cached_open_file_t struct (compared to the alternative of adding some
opaque pointer on this struct).
Therefore, there are no memory implications for "regular" (log = 0) open file caches, the overhead is
only an extra 'if' on the creation / deletion of the cached file object (no impact at all on cache hit,
which is probably the most performance sensitive) 

Btw, on a similar subject - can anyone explain the purpose of checking the existence of the root dir
in scripted logs? Only explanation I could think of is to provide some security protection in case $uri
is used in the script, but that sounds like a very specific use case to me... 
Anyway, if that is indeed the case, maybe it makes sense to add conf directive to enable/disable 
this behavior?

Thank you!

Eran

-------------- next part --------------
A non-text attachment was scrubbed...
Name: buffered_script_logs.patch
Type: application/octet-stream
Size: 19571 bytes
Desc: buffered_script_logs.patch
URL: <http://mailman.nginx.org/pipermail/nginx-devel/attachments/20170807/5602186a/attachment-0001.obj>


More information about the nginx-devel mailing list