Is cross-collection search supported on OpenSearch Serverless?

0

We use the cross-domain search functionality in Opensearch domains, which allows us to create connections between domains and use the Opensearch cross-cluster search feature to execute a single query with results returned from each domain. https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cross-cluster-search.html

Then we could run queries (with aggregations) against multiple domains by including comma separated connection aliases in the index name ("connection-alias:index" as each remote index name):

    GET https://a-domain.us-east-1.es.amazonaws.com/a_index,cluster_a_to_b:b_index,cluster_a_to_c:c_index/_search
    {
      "query": {
        "match": {
          "user": "domino"
        }
      }
    }

Is there an equivalent feature in Serverless that lets you search across multiple "collection" indexes with a single query? https://opensearch.org/docs/latest/security/access-control/cross-cluster-search/

Could we use multiple collection name aliases the same way instead of the domain connection aliases?

1 Resposta
0

As of today (05/04/2023) OpenSearch serverless doesn't support cross collection search. OpenSearch serverless will support cross collection search in future.

profile pictureAWS
respondido há um ano

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas