V552 : Multiple indices search using wildcard

hello.
we about to upgrade to elasticsearch552. part of it is to change the indices design from one index and multiple types to index per type. we plan to name each index with the same prefix and also to have alias to each index.
the client that query the DB suppose to search by the following paramers:
index: prefix*
type: specific type name
query:...

the question is how using wildcard for the index name really works and if there is any performance issue searching data this way.

Elasticsearch will simply query any index that matches the pattern.

Performance will depend on the query though, but it shouldn't be a major concern.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.