Solr 8.6.2 - 単一クエリを2つのコアに実行することは可能ですか?
トピック作成者:ks-solruserml-bot (2024/05/28 19:54 投稿)
1
(The bot translated the original post https://lists.apache.org/thread/m82cbr8xyc3vswo50mkyp77npyhd82lr into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)
私は2つのコア「live」と「archive」を持っており、それぞれのフィールドは完全に同じです。
ユニークID「posting_id」でクエリを実行したいです。最初に「live」をチェックし、見つからない場合は「archive」をチェックして結果を表示したいです。
以下のクエリは「live」で検索を行い、「archive」では検索を行いません:
http://xxx:8983/solr/live/select?q=*:*&fq=posting_id:41009261&indent=true&shards=archive
以下のクエリはエラーを返します:
エラーメッセージは以下の通りです:
<response>
<lst name="responseHeader">
<int name="status">401</int>
<int name="QTime">10</int>
<lst name="params">
<str name="q">*:*</str>
<str name="shards">xxx.yyy.zzz.aaa:8983/solr/archive</str>
<str name="indent">true</str>
<str name="fq">posting_id:41009261</str>
<str name="wt">xml</str>
</lst>
</lst>
<lst name="error">
<lst name="metadata">
<str name="error-class">org.apache.solr.client.solrj.impl.BaseHttpSolrClient$RemoteSolrException</str>
<str name="root-error-class">org.apache.solr.client.solrj.impl.BaseHttpSolrClient$RemoteSolrException</str>
</lst>
<str name="msg">Error from server at null: Expected mime type application/octet-stream but got text/html.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Error 401 Unauthorized</title>
</head>
<body>
<h2>HTTP ERROR 401 Unauthorized</h2>
<table>
<tr><th>URI:</th><td>/solr/archive/select</td></tr>
<tr><th>STATUS:</th><td>401</td></tr>
<tr><th>MESSAGE:</th><td>Unauthorized</td></tr>
<tr><th>SERVLET:</th><td>default</td></tr>
</table>
</body>
</html>
</str>
<int name="code">401</int>
</lst>
</response>
2つのコアに対して単一のクエリを実行するにはどうすればよいですか?
solr.in.shに以下を追加しました:
SOLR_OPTS="$SOLR_OPTS -Dsolr.disable.shardsWhitelist=true"
トピックへ返信するには、ログインが必要です。