-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DISCUSS] Index config update #1024
Comments
CLI API alternativeCreating an index (same as before) Updating an index config Fetching an index config |
See #1071 for a discussion regarding source creation and source config update. |
Update of the retention policy and search config is addressed in #4832. Update semantics are a bit different from what was proposed here:
Update of indexing setting will be proposed in a separate PR #4868 |
Currently, once an index is created, its config is immutable. We want to provide an API for updating an index config.
CLI API
Creating an index
quickwit index apply --id my-index --uri s3://my-indexes/my-index --config-file path/to/my/index/config.yaml
Updating an index config
quickwit index apply --index my-index --config-file path/to/my/index/config.yaml
Fetching an index config
quickwit index get --index my-index
REST API
TDB
Metastore API
The following API already exists for creating an index:
Implementation
Ideally, the CLI and REST API both rely on the
Out of scope:
The text was updated successfully, but these errors were encountered: