-
Notifications
You must be signed in to change notification settings - Fork 7
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
move from error to warn #142
Conversation
@@ -508,7 +508,7 @@ server: | |||
type: pd-standard | |||
|
|||
logging: | |||
level: error | |||
level: warn |
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.
it already is set to error
in helm-values repo.
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.
We will adjust in helm-values repo as needed
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 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.
what I meant was that we already have set the logging level to error
. are there any specific warn logs we are interested in? there were too much logging by pinot.
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.
Laxman and mihir were of opinion we should have warn logs and fix any underlying issues
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.
I only suggested better to keep warn as the default.
If they are too noisy, we may need to investigate and fix or turn them off at package level in worst case.
@@ -11,7 +11,7 @@ metadata: | |||
heritage: {{ .Release.Service }} | |||
data: | |||
pinot-controller-log4j2.xml: |- | |||
<Configuration> | |||
<Configuration monitorInterval="30"> |
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.
same with this, we will be modifying in helm-values if overriden
@@ -25,7 +25,7 @@ data: | |||
<AppenderRef ref="console"/> | |||
</Root> | |||
<AsyncLogger name="org.reflections" level="error" additivity="false"/> | |||
<AsyncLogger name="org.apache.pinot.broker.querylog.QueryLogger" level="info"/> | |||
<Logger name="org.apache.pinot.broker.querylog.QueryLogger" level="info" additivity="false"/> |
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.
Logger need to have console appenderRef.
No description provided.