-
Notifications
You must be signed in to change notification settings - Fork 56
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
Gracefully handle out of slot exception in kafka client produce #561
Conversation
…artial data frame while computing crc32c value
@@ -583,6 +591,26 @@ private int flushRecordContFin( | |||
return progress; | |||
} | |||
|
|||
private int rejectAll( |
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.
private int rejectAll( | |
private int flushRecordIgnoreAll( |
progress = limit; | ||
|
||
return progress; |
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.
progress = limit; | |
return progress; | |
return limit; |
int progress, | ||
int limit) | ||
{ | ||
client.cleanupNetwork(traceId); |
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.
Can we move this to the place where we assign flusher to flushRecordIgnoreAll
instead?
Description
Gracefully handle out of slot exception in kafka client produce
Fixes #558