thelabdude commented on a change in pull request #2132: URL: https://github.com/apache/lucene-solr/pull/2132#discussion_r554054810
########## File path: solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/FacetStream.java ########## @@ -537,14 +555,29 @@ public void setStreamContext(StreamContext context) { } public void open() throws IOException { - if(cache != null) { + if (cache != null) { cloudSolrClient = cache.getCloudSolrClient(zkHost); } else { final List<String> hosts = new ArrayList<>(); hosts.add(zkHost); cloudSolrClient = new Builder(hosts, Optional.empty()).withSocketTimeout(30000).withConnectionTimeout(15000).build(); } + // Parallelize the facet expression across multiple collections for an alias using plist if possible + if (params.getBool("plist", defaultPlistEnabled)) { Review comment: this is the main hook to see if the auto-plist approach should apply to this facet expression ---------------------------------------------------------------- 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