-
Notifications
You must be signed in to change notification settings - Fork 169
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
THREESCALE-7941 - Review warning displayed in apicast logs about variables_hash_max_size & variables_hash_bucket_size #1395
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try solving the issue with one change, if not possible then add the second change. Values printed in the logs are current values not suggested new values.
gateway/bin/apicast
Outdated
@@ -129,7 +129,7 @@ local function resty(code) | |||
|
|||
if not cmd then return nil, 'could not find resty' end | |||
|
|||
local handle = io.popen(([[/usr/bin/env -i %q -e %q]]):format(cmd, code)) | |||
local handle = io.popen(([[/usr/bin/env -i %q -e %q 2>/dev/null]]):format(cmd, code)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code change looks unrelated to this issue. I suspect it's unintended to be included in this commit and will cause a conflict with other PRs or with this one depending which gets merged first.
gateway/conf/nginx.conf.liquid
Outdated
@@ -43,7 +43,8 @@ http { | |||
tcp_nodelay on; | |||
server_tokens off; | |||
|
|||
|
|||
variables_hash_bucket_size 128; | |||
variables_hash_max_size 1024; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no point in declaring variable_hash_max_size 1024;
because that is already the default value. We can see that in the log output attached in the JIRA.
I think we need to just follow Nginx documentation here:
if nginx emits the message requesting to increase either hash max size or hash bucket size then the first parameter should first be increased.
variables_hash_max_size 2048;
If that fixes the issue we are good, if not then declare:
variables_hash_bucket_size 256;
At least this is how I understand what Nginx documentation is suggesting to do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake with the PR, it got the THREESCALE-7942 together, just ignore the first commit.
I added variables_hash_max_size
with the default value because both configurations are used together, keep it clear what's configured, and there's no problem to specify some variable with their default value.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to the doc:
The hash bucket size parameter is aligned to the size that is a multiple of the processor’s cache line size. This speeds up key search in a hash on modern processors by reducing the number of memory accesses
So, as I understand, the variables_hash_bucket_size
is computed internally to be aligned with the processor’s cache line size, it does not have a fixed default size. We should not set it.
I suggest that I can help with the rebase stuff if you need. |
Verification
The warning message is gone. |
…to avoid startup warning.
b35fddc
to
fc3794c
Compare
@kevprice83 waiting for your approval (since you requested changes) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes this looks better now and aligned with what the Nginx documentation recommends. Nice work!
Increasing the limit of variables_hash_bucket_size make the warning message disapear.
This message is a warning that NGiNX display when the used variables
didn't fit the buffer. Increasing will also increase performance and
will not show this warning.
The NGiNX documenation about hashes says:
Reference: NGiNX: Setting up hashes
Also, to check the processor's cache line size, use:
cat /sys/devices/system/cpu/cpu*/cache/index*/coherency_line_size | head -n 1
Source: https://stackoverflow.com/questions/794632/programmatically-get-the-cache-line-size
This commit fix the Jira issue THREESCALE-7941