Skip to content

Remove Experimental Labels for SparseVectorQuery Token Pruning for GA #4454

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 4 additions & 10 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions specification/_types/query_dsl/SparseVectorQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export class SparseVectorQuery extends QueryBase {
* Whether to perform pruning, omitting the non-significant tokens from the query to improve query performance.
* If prune is true but the pruning_config is not specified, pruning will occur but default values will be used.
* Default: false
* @availability stack since=8.15.0 stability=experimental
* @availability serverless stability=experimental
* @availability stack since=8.15.0
* @availability serverless
* @variant container_property
*/
prune?: boolean
Expand All @@ -72,8 +72,8 @@ export class SparseVectorQuery extends QueryBase {
* If enabled, this will omit non-significant tokens from the query in order to improve query performance.
* This is only used if prune is set to true.
* If prune is set to true but pruning_config is not specified, default values will be used.
* @availability stack since=8.15.0 stability=experimental
* @availability serverless stability=experimental
* @availability stack since=8.15.0
* @availability serverless
* @variant container_property
*/
pruning_config?: TokenPruningConfig
Expand Down
Loading