Update v1.3.0 alpha.1#5
Merged
euphoria0-0 merged 4 commits intomainfrom Feb 3, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces support for the IVF_GAS index type in enVector and modernizes the benchmarking infrastructure. The changes enable enVector's custom ANN algorithm (GAS) for encrypted search, simplify configuration management, and improve the overall benchmark workflow.
Changes:
- Added IVF_GAS (GAS) index type support with new CLI command
envectorivfgas - Refactored configuration files to use YAML anchors for better maintainability
- Updated benchmark scripts with improved argument parsing and configuration-based workflow
- Improved insert operation tracking with request IDs and searchable wait functionality
Reviewed changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| vectordb_bench/cli/vectordbbench.py | Added EnVectorIVFGAS command and removed S3Vectors import |
| vectordb_bench/backend/clients/envector/cli.py | Added IVF_GAS index configuration and removed VCT-specific parameters |
| vectordb_bench/backend/clients/envector/config.py | Added IVFGASIndexConfig class and removed VCT-related fields |
| vectordb_bench/backend/clients/envector/envector.py | Refactored insert logic to use request tracking and removed VCT code paths |
| vectordb_bench/backend/runner/serial_runner.py | Added insert completion polling for EnVector with configurable timeouts |
| vectordb_bench/backend/clients/api.py | Added IVFGAS enum value and removed unused name field |
| vectordb_bench/init.py | Changed NUM_PER_BATCH default from 100 to 4096 |
| scripts/run_benchmark.sh | Complete rewrite with config-file-based approach and improved help |
| scripts/prepare_dataset.py | Added module docstring and improved formatting |
| scripts/requirements.txt | Added required dependencies for dataset preparation |
| vectordb_bench/config-files/*.yml | New config files with YAML anchors replacing old scripts/*.yml files |
| README.md | Comprehensive rewrite focused on enVector usage with VectorDBBench |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 60 out of 60 changed files in this pull request and generated 5 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Update v1.3.0 alpha.1
envectorivfgasrun_benchmark.shscripts