-
Notifications
You must be signed in to change notification settings - Fork 1k
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
perf: Avoids logging INFO for rest-util requests, since it hurts pull query performance #4302
perf: Avoids logging INFO for rest-util requests, since it hurts pull query performance #4302
Conversation
@confluentinc It looks like @AlanConfluent just signed our Contributor License Agreement. 👍 Always at your service, clabot |
@AlanConfluent can we file an issue as well and link it in the PR description.. using |
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.
LGTM! Nice job!
config/log4j-rolling.properties
Outdated
@@ -65,3 +65,6 @@ log4j.logger.processing=ERROR, kafka_appender | |||
log4j.additivity.processing=false | |||
|
|||
log4j.logger.org.reflections=ERROR, main | |||
|
|||
# To acheive high throughput on pull queries, avoid logging every request from Jetty |
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.
typo:achieve?
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.
Ahh, yes. Will fix.
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.
Fixed.
9d34685
to
014be85
Compare
Description
Avoids logging every request to come in at the Jetty level since that hurst pull query performance. Before this change, on my Mac, I was getting 14k qps and with this change, I'm getting 30k.
Fixes #4306
Testing done
Ran benchmarks.
Reviewer checklist