如何使用 shard.preference=replica.leader 创建 Solr 请求?

问题描述 投票:0回答:2

我有带有 shards.preference 参数的 solr 请求。 请求示例:

https://host:port/solr/my_collection/select?debugQuery=on&q=acc:100012&shards.preference=replica.leader:false

solr 错误示例:

"error":{
    "metadata":[
      "error-class","org.apache.solr.common.SolrException",
      "root-error-class","org.apache.solr.common.SolrException"],
    "msg":"Invalid shards.preference type: replica.leader",
    "code":400}

我需要如何更改请求才能获得结果?

solr
2个回答
0
投票

我不相信replica.leader是shards.preference的一个选项。只有replica.type和replica.location请参阅:https://solr.apache.org/guide/8_0/distributed-requests.html


0
投票
© www.soinside.com 2019 - 2024. All rights reserved.