madrob commented on a change in pull request #2318: URL: https://github.com/apache/lucene-solr/pull/2318#discussion_r573116634
########## File path: solr/solrj/src/java/org/apache/solr/common/cloud/PerReplicaStates.java ########## @@ -92,6 +94,17 @@ public PerReplicaStates(String path, int cversion, List<String> states) { } + /** Check and return if all replicas are ACTIVE + */ + public boolean allActive() { + if (this.allActive != null) return allActive; + boolean[] result = new boolean[]{true}; Review comment: Agree. ########## File path: solr/core/src/java/org/apache/solr/cloud/api/collections/CreateCollectionCmd.java ########## @@ -264,8 +264,11 @@ public void call(ClusterState clusterState, ZkNodeProps message, @SuppressWarnin log.info("Cleaned up artifacts for failed create collection for [{}]", collectionName); throw new SolrException(ErrorCode.BAD_REQUEST, "Underlying core creation failed while creating collection: " + collectionName); } else { + //we want to wait till all the replicas are ACTIVE for PRS collections because + ocmh.zkStateReader.waitForState(collectionName, 30, TimeUnit.SECONDS, (liveNodes, c) -> + c.getPerReplicaStates() == null || // this is not a PRS collection Review comment: I agree with Ilan here, let's skip the extra watcher and call to ZK. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org