-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
Describe the feature:
Allow setting of is_write_index
for Create Index and Index Aliases API's which can be used by the Rollover API.
This seems currently not supported:
await client.CreateIndexAsync("my-index", s => s
.Aliases(a => a
.Alias("my-alias", d => d
.IsWriteIndex() // <-- Method doesn't exist, only Filter() etc
)
)
);
Call via ES API:
PUT my-index
{
"aliases": {
"my-alias": {
"is_write_index": true
}
}
}
ejsmith
Metadata
Metadata
Assignees
Labels
No labels