dsmiley commented on code in PR #2853: URL: https://github.com/apache/solr/pull/2853#discussion_r1874029905
########## solr/solrj/src/java/org/apache/solr/client/solrj/impl/BaseHttpClusterStateProvider.java: ########## @@ -163,14 +145,11 @@ private ClusterState fetchClusterState( } for (Map.Entry<String, Object> e : collectionsMap.entrySet()) { - @SuppressWarnings("rawtypes") - Map m = (Map) e.getValue(); - Long creationTimeMillisFromClusterStatus = (Long) m.get("creationTimeMillis"); - Instant creationTime = - creationTimeMillisFromClusterStatus == null - ? Instant.EPOCH - : Instant.ofEpochMilli(creationTimeMillisFromClusterStatus); - cs = cs.copyWith(e.getKey(), fillPrs(znodeVersion, e, creationTime, m)); + String collectionName = e.getKey(); + Map<String, Object> collStateMap = (Map<String, Object>) e.getValue(); + cs = + cs.copyWith( Review Comment: Calling copyWith in a loop of collections is `O(N^2)` (N=#collections); right? Not a problem introduced in this PR but I just want to confer with you on this problem. -- 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: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org