ercsonusharma commented on code in PR #4546:
URL: https://github.com/apache/solr/pull/4546#discussion_r3458131624


##########
solr/solrj/src/java/org/apache/solr/common/params/CombinerParams.java:
##########
@@ -27,9 +27,11 @@ private CombinerParams() {}
   public static final String COMBINER = "combiner";
   public static final String COMBINER_ALGORITHM = COMBINER + ".algorithm";
   public static final String COMBINER_QUERY = COMBINER + ".query";
+  public static final String COMBINER_QUERY_DEPTH = COMBINER + ".queryDepth";
   public static final String RECIPROCAL_RANK_FUSION = "rrf";
   public static final String COMBINER_RRF_K = COMBINER + "." + 
RECIPROCAL_RANK_FUSION + ".k";
   public static final String DEFAULT_COMBINER = RECIPROCAL_RANK_FUSION;
   public static final int DEFAULT_COMBINER_RRF_K = 60;
   public static final int DEFAULT_MAX_COMBINER_QUERIES = 5;
+  public static final int DEFAULT_MAX_QUERY_DEPTH = 1000;

Review Comment:
   Kept default to 1000 to match Solr's deep-paging convention (start + rows ≈ 
1000 before cursors are recommended). However, this can be configured via 
solrconfig.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to