AndrewJSchofield commented on code in PR #16786:
URL: https://github.com/apache/kafka/pull/16786#discussion_r1713554035
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupCoordinatorShard.java:
##########
@@ -790,6 +806,27 @@ public void replay(
);
break;
+ case 12:
+ groupMetadataManager.replay(
+ (ShareGroupTargetAssignmentMetadataKey) key.message(),
+ (ShareGroupTargetAssignmentMetadataValue)
Utils.messageOrNull(value)
+ );
+ break;
+
+ case 13:
+ groupMetadataManager.replay(
+ (ShareGroupTargetAssignmentMemberKey) key.message(),
+ (ShareGroupTargetAssignmentMemberValue)
Utils.messageOrNull(value)
+ );
+ break;
+
+ case 14:
+ groupMetadataManager.replay(
+ (ShareGroupCurrentMemberAssignmentKey) key.message(),
+ (ShareGroupCurrentMemberAssignmentValue)
Utils.messageOrNull(value)
+ );
+ break;
+
Review Comment:
That's in a later PR (possibly AK 4.1). That record type will be used to
keep track of which partitions are being tracked by the share coordinator. I'll
update KIP-932 with these revised definitions soon.
--
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]