akhileshchg commented on code in PR #12998: URL: https://github.com/apache/kafka/pull/12998#discussion_r1050300078
########## metadata/src/main/java/org/apache/kafka/metadata/migration/KRaftMigrationDriver.java: ########## @@ -88,14 +83,23 @@ private void initializeMigrationState() { } private boolean isControllerQuorumReadyForMigration() { - // TODO - return false; + return true; } private boolean areZkBrokersReadyForMigration() { - // TODO: Check available broker registrations and known topic assignments to confirm of - // all Zk brokers are registered before beginning migration. - return false; + Set<Integer> kraftRegisteredZkBrokers = image.cluster().brokers().values() + .stream() + .filter(BrokerRegistration::isMigratingZkBroker) + .map(BrokerRegistration::id) + .collect(Collectors.toSet()); + Set<Integer> zkRegisteredZkBrokers = zkMigrationClient.readBrokerIds(); + zkRegisteredZkBrokers.removeAll(kraftRegisteredZkBrokers); + if (zkRegisteredZkBrokers.isEmpty()) { + return true; + } else { Review Comment: I'm tenatively adding the change. We can remove it if it is not required. -- 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