AndrewJSchofield commented on code in PR #22617:
URL: https://github.com/apache/kafka/pull/22617#discussion_r3438090767
##########
clients/src/main/java/org/apache/kafka/clients/FetchSessionHandler.java:
##########
@@ -526,11 +526,15 @@ private String
responseDataToLogString(Set<TopicPartition> topicPartitions) {
*/
public boolean handleResponse(FetchResponse response, short version) {
if (response.error() != Errors.NONE) {
- log.info("Node {} was unable to process the fetch request with {}:
{}.",
- node, nextMetadata, response.error());
if (response.error() == Errors.FETCH_SESSION_ID_NOT_FOUND) {
Review Comment:
Do we also need to handle `INVALID_FETCH_SESSION_EPOCH`? I think that this
in principle can happen when a network connection is lost and reconnected, and
the recovery action is the same.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]