-
Notifications
You must be signed in to change notification settings - Fork 76
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
Added Executor and increased timeout to help with stability #301
Conversation
@@ -196,7 +196,7 @@ void open(HiveUgiArgs ugiArgs) { | |||
// Wait before launching the next round of connection retries. | |||
if (!isConnected && (retryDelaySeconds > 0) && ((attempt + 1) < retries)) { | |||
try { | |||
LOG.info("Waiting " + retryDelaySeconds + " seconds before next connection attempt."); | |||
LOG.debug("Waiting " + retryDelaySeconds + " seconds before next connection attempt."); |
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.
does this log not help with detecting slow metastore 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 don't think so, we're already printing an info on line 124. This just adds to clutter imho.
Co-authored-by: Abhimanyu Gupta <[email protected]>
Co-authored-by: Abhimanyu Gupta <[email protected]>
No description provided.