Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> Co-authored-by: Nicole Albee <2642763+a03nikki@users.noreply.github.com>
This commit is contained in:
parent
c6c6596623
commit
71ca7f4d70
|
@ -18,14 +18,19 @@ API, unless otherwise specified.
|
||||||
Most APIs that accept a `<data-stream>`, `<index>`, or `<target>` request path
|
Most APIs that accept a `<data-stream>`, `<index>`, or `<target>` request path
|
||||||
parameter also support _multi-target syntax_.
|
parameter also support _multi-target syntax_.
|
||||||
|
|
||||||
In multi-target syntax, you can use a comma-separated list to execute a request across multiple resources, such as
|
In multi-target syntax, you can use a comma-separated list to run a request on
|
||||||
data streams, indices, or index aliases: `test1,test2,test3`. You can also use
|
multiple resources, such as data streams, indices, or index aliases:
|
||||||
{wikipedia}/Glob_(programming)[glob-like] wildcard (`*`)
|
`test1,test2,test3`. You can also use {wikipedia}/Glob_(programming)[glob-like]
|
||||||
expressions to target any
|
wildcard (`*`) expressions to target resources that match a pattern: `test*` or
|
||||||
resources that match the pattern: `test*` or `*test` or `te*t` or `*test*.
|
`*test` or `te*t` or `*test*`.
|
||||||
|
|
||||||
You can exclude targets using the `-` character: `test*,-test3`.
|
You can exclude targets using the `-` character: `test*,-test3`.
|
||||||
|
|
||||||
|
IMPORTANT: Index aliases are resolved after wildcard expressions. This can
|
||||||
|
result in a request that targets an excluded alias. For example, if `test3` is
|
||||||
|
an index alias, the pattern `test*,-test3` still targets the indices for
|
||||||
|
`test3`. To avoid this, exclude the concrete indices for the alias instead.
|
||||||
|
|
||||||
Multi-target APIs that can target indices support the following query
|
Multi-target APIs that can target indices support the following query
|
||||||
string parameters:
|
string parameters:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue