feat: Valkey Online Write Batch Vector Search Support#351
feat: Valkey Online Write Batch Vector Search Support#351Manisha4 merged 7 commits intofeature/vector-storefrom
Conversation
…batch functionality
| feast_dtype: Feast data type (e.g., Array(Float32)) | ||
|
|
||
| Returns: | ||
| Valkey vector type string: "FLOAT32" or "FLOAT64" |
There was a problem hiding this comment.
Is float64 a supported vector type in valkey?
There was a problem hiding this comment.
yes it is supported
There was a problem hiding this comment.
This document says, only float32 is supported. A'm I missing something?
https://valkey.io/topics/search-data-formats/
There was a problem hiding this comment.
You're right, I looked at data formats not relating to Search by mistake. Thanks!!
| index_name = _get_vector_index_name(config.project, table.name) | ||
|
|
||
| # Check if index exists | ||
| try: |
There was a problem hiding this comment.
If two processes call online_write_batch concurrently for the same feature view, both could see the index as non-existent and both attempt FT.CREATE, with one failing.
There was a problem hiding this comment.
Will catch the exception like the other DBs
|
|
||
| if feature_name in vector_field_names: | ||
| # Vector field: deserialize from raw bytes | ||
| field = next(f for f in feature_view.features if f.name == feature_name) |
There was a problem hiding this comment.
This is O(n) field lookup per vector feature per entity. Can we try a dict lookup?
| schema_fields.append(VectorField(field_name, algorithm, attributes)) | ||
|
|
||
| # Define index on HASH keys with specific prefix | ||
| key_prefix = _redis_key_prefix(table.join_keys) |
There was a problem hiding this comment.
_redis_key_prefix(table.join_keys) produces a prefix based only on the join key names (e.g., ["item_id"]), without including the project. But _redis_key() builds the actual HASH keys as
<serialized_entity_key>, with the project appended as a suffix.
This means the IndexDefinition prefix will match HASH keys from all projects that share the same join key names. If two projects (e.g., prod and staging) both have a feature view with join_keys=["item_id"], the vector index created for prod will also index staging's keys, and vice versa.
Im not sure how the solution would look like for this. Maybe use a filter expression or something when building the search to scope the results to correct project?
There was a problem hiding this comment.
Yes, I added a TODO comment for now but will address this while implementing the Search part.
vanitabhagwat
left a comment
There was a problem hiding this comment.
I think we need to clean up the vector indexes somewhere. Maybe in delete_table and call it in teardown like we do for hashes.
| if len(_tables) == 1: | ||
| pipe.delete(_k) | ||
| else: | ||
| pipe.hdel(_k, *valkey_hash_keys) |
There was a problem hiding this comment.
Since we are using the original field names for vector fields, *pipe.hdel(_k, valkey_hash_keys) wont delete the vector fields. I
n case of vector fields, you need to have the original vector names added to valkey_hash_keys.
There was a problem hiding this comment.
Thanks, made the fix!
| def _get_vector_index_name(project: str, feature_view_name: str) -> str: | ||
| """Generate Valkey Search index name for vector fields.""" | ||
| return f"{project}_{feature_view_name}_vidx" | ||
|
|
There was a problem hiding this comment.
Can we add the feature name into the index name? Looking ahead at multi-vector we are going to run into issues with just project + fv name.
* Adding support for Valkey Search, adding changes to the online_write_batch functionality * Addressing PR comments * addressing linting error * fix tests * addressing PR comments * addressing PR comments * fixing linting --------- Co-authored-by: Manisha4 <Manisha4@github.com>
* feat: Valkey Online Write Batch Vector Search Support (#351) * Adding support for Valkey Search, adding changes to the online_write_batch functionality * Addressing PR comments * addressing linting error * fix tests * addressing PR comments * addressing PR comments * fixing linting --------- Co-authored-by: Manisha4 <Manisha4@github.com> * feat: Support Vector Search in Valkey (#354) * Adding support for Valkey Search, adding changes to the online_write_batch functionality * Addressing PR comments * addressing linting error * Adding changes to support search in valkey * fix tests * adding unit tests * reformatting files and adding checks and more tests * reformatting files and adding checks and more tests * reformatting files and adding checks and more tests * Fix linter errors: type annotations and code formatting - Add explicit type annotation for schema_fields to support both TagField and VectorField - Encode project string to bytes for consistency with other hash values - Decode doc_key bytes to string for hmget compatibility - Fix code formatting: break long lines and remove extra blank lines - Remove tests for multiple vector fields (Feast enforces one vector per feature view) - Fix config type: use 'eg-valkey' (hyphen) not 'eg_valkey' (underscore) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * addressing PR comments * addressing PR comments * fixing linting * Fix missing feature_name argument in retrieve_online_documents_v2 Add the third argument (vector_field.name) to _get_vector_index_name call to match the updated function signature. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * addressing comments, PR changes for some fixes and merge conflicts * fixing tests * fixing tests * fixing linting * fixing linting --------- Co-authored-by: Manisha4 <Manisha4@github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> * fix: Valkey vector search - remove unsupported SORTBY (#356) * fix: Valkey vector search - remove unsupported SORTBY and fix tag filter syntax Valkey Search KNN queries return results pre-sorted by distance, so explicit SORTBY is not supported and causes a ResponseError. This removes the .sort_by() call from the query builder. Additionally, fixes the project tag filter to use unquoted syntax with backslash escaping for special characters (e.g. hyphens, dots) instead of the quoted syntax which was returning empty results. Updates unit tests to reflect both changes: replaces three metric-specific sort order tests with a single test asserting no SORTBY is set, and updates escaping assertions to match the new backslash-escape approach. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: apply ruff format to eg_valkey.py and test_valkey.py Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Manisha4 <Manisha4@github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Manisha4 <Manisha4@github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
What this PR does / why we need it:
Changes
Implementation (eg_valkey.py):
Configuration (EGValkeyOnlineStoreConfig):
Design Decisions