lihaosky commented on code in PR #14097:
URL: https://github.com/apache/kafka/pull/14097#discussion_r1275577058


##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/assignment/RackAwareTaskAssignor.java:
##########
@@ -48,23 +49,25 @@ public class RackAwareTaskAssignor {
 
     private final Cluster fullMetadata;
     private final Map<TaskId, Set<TopicPartition>> partitionsForTask;
-    private final Map<UUID, Map<String, Optional<String>>> racksForProcess;
+    private final Map<UUID, Map<String, Optional<String>>> 
racksForProcessConsumer;
     private final AssignmentConfigs assignmentConfigs;
     private final Map<TopicPartition, Set<String>> racksForPartition;
+    private final Map<UUID, String> racksForProcess;
     private final InternalTopicManager internalTopicManager;
 
     public RackAwareTaskAssignor(final Cluster fullMetadata,
                                  final Map<TaskId, Set<TopicPartition>> 
partitionsForTask,
                                  final Map<Subtopology, Set<TaskId>> 
tasksForTopicGroup,
-                                 final Map<UUID, Map<String, 
Optional<String>>> racksForProcess,
+                                 final Map<UUID, Map<String, 
Optional<String>>> racksForProcessConsumer,
                                  final InternalTopicManager 
internalTopicManager,
                                  final AssignmentConfigs assignmentConfigs) {
         this.fullMetadata = fullMetadata;
         this.partitionsForTask = partitionsForTask;
-        this.racksForProcess = racksForProcess;
+        this.racksForProcessConsumer = racksForProcessConsumer;

Review Comment:
   Sounds good. We can check it here



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to