搜索多个数据流和索引
编辑搜索多个数据流和索引编辑
要搜索多个数据流和索引,请在 搜索 API 的请求路径中将它们添加为逗号分隔值。
以下请求搜索 my-index-000001
和 my-index-000002
索引。
response = client.search( index: 'my-index-000001,my-index-000002', body: { query: { match: { 'user.id' => 'kimchy' } } } ) puts response
GET /my-index-000001,my-index-000002/_search { "query": { "match": { "user.id": "kimchy" } } }
您还可以使用索引模式搜索多个数据流和索引。
以下请求针对 my-index-*
索引模式。该请求搜索集群中以 my-index-
开头的任何数据流或索引。
response = client.search( index: 'my-index-*', body: { query: { match: { 'user.id' => 'kimchy' } } } ) puts response
GET /my-index-*/_search { "query": { "match": { "user.id": "kimchy" } } }
要搜索集群中的所有数据流和索引,请从请求路径中省略目标。或者,您可以使用 _all
或 *
。
以下请求是等效的,并且搜索集群中的所有数据流和索引。
response = client.search( body: { query: { match: { 'user.id' => 'kimchy' } } } ) puts response response = client.search( index: '_all', body: { query: { match: { 'user.id' => 'kimchy' } } } ) puts response response = client.search( index: '*', body: { query: { match: { 'user.id' => 'kimchy' } } } ) puts response
GET /_search { "query": { "match": { "user.id": "kimchy" } } } GET /_all/_search { "query": { "match": { "user.id": "kimchy" } } } GET /*/_search { "query": { "match": { "user.id": "kimchy" } } }
索引提升编辑
在搜索多个索引时,您可以使用 indices_boost
参数来提升来自一个或多个指定索引的结果。当来自某些索引的结果比来自其他索引的结果更重要时,这很有用。
您不能将 indices_boost
与数据流一起使用。
response = client.search( body: { indices_boost: [ { "my-index-000001": 1.4 }, { "my-index-000002": 1.3 } ] } ) puts response
GET /_search { "indices_boost": [ { "my-index-000001": 1.4 }, { "my-index-000002": 1.3 } ] }
别名和索引模式也可以使用
response = client.search( body: { indices_boost: [ { "my-alias": 1.4 }, { "my-index*": 1.3 } ] } ) puts response
GET /_search { "indices_boost": [ { "my-alias": 1.4 }, { "my-index*": 1.3 } ] }
如果找到多个匹配项,则将使用第一个匹配项。例如,如果索引包含在 alias1
中并且与 my-index*
模式匹配,则应用提升值 1.4
。