dsmiley commented on code in PR #4149: URL: https://github.com/apache/solr/pull/4149#discussion_r3104148944
########## changelog/unreleased/SOLR-8127-distributed-luke.yml: ########## @@ -0,0 +1,8 @@ +# See https://github.com/apache/solr/blob/main/dev-docs/changelog.adoc +title: Distributed Luke Review Comment: expand on that please ;-) ########## solr/solr-ref-guide/modules/indexing-guide/pages/luke-request-handler.adoc: ########## @@ -118,3 +130,43 @@ Alternatively, to work through the Lucene native id: http://localhost:8983/solr/techproducts/admin/luke?fl=manu&docId=0 From SolrJ, you can access /luke using the {solr-javadocs}/solrj/org/apache/solr/client/solrj/request/LukeRequest.html[`LukeRequest`] object. + +== Distributed Mode (multiple shards) + +When running in SolrCloud, the Luke handler automatically distributes requests across all shards in the collection, the same as search requests. +To inspect only the local shard's index set `distrib=false`. +In non-cloud mode, you can still distribute across shards by passing the `shards` parameter with explicit shard URLs. Review Comment: ```suggestion In user-managed clusters, you can distribute across shards by passing the `shards` parameter with explicit shard URLs. ``` ########## solr/solr-ref-guide/modules/indexing-guide/pages/luke-request-handler.adoc: ########## @@ -118,3 +130,43 @@ Alternatively, to work through the Lucene native id: http://localhost:8983/solr/techproducts/admin/luke?fl=manu&docId=0 From SolrJ, you can access /luke using the {solr-javadocs}/solrj/org/apache/solr/client/solrj/request/LukeRequest.html[`LukeRequest`] object. + +== Distributed Mode (multiple shards) + +When running in SolrCloud, the Luke handler automatically distributes requests across all shards in the collection, the same as search requests. +To inspect only the local shard's index set `distrib=false`. Review Comment: ```suggestion To inspect only the receiving shard's index set `distrib=false`. ``` -- 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]
