Add S3VectorsCreateIndexOperator#66121
Merged
vincbeck merged 1 commit intoapache:mainfrom May 4, 2026
Merged
Conversation
cb96056 to
34512bc
Compare
vincbeck
approved these changes
Apr 29, 2026
34512bc to
b5bdd83
Compare
vincbeck
reviewed
Apr 30, 2026
3306731 to
47d7a79
Compare
47d7a79 to
d6ce9de
Compare
vincbeck
approved these changes
May 1, 2026
79 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add
S3VectorsCreateIndexOperatorto create indexes in Amazon S3 Vectors vector buckets.Why
Indexes are the core resource for storing and querying vectors within a vector bucket. The hierarchy is: vector bucket → index → vectors.
S3VectorsCreateVectorBucketOperator(#65968) already exists, but there was no operator to create indexes within a bucket.What was done
S3VectorsCreateIndexOperatorwithif_existsidempotency,prune_dict, support fordata_type,dimension,distance_metric, andmetadata_configuration. Added to existings3_vectors.py.test_s3_vectors.py— happy path, metadata config, skip-existing, fail-on-conflict, template fieldsexample_s3_vectors.py— creates index after bucket, with@taskteardown for delete (futureS3VectorsDeleteIndexOperator)s3_vectors.rstwith new section, fixed heading hierarchy (dashes for sections, Reference last)No
provider.yamlorget_provider_info.pychanges needed — S3 Vectors integration already registered.