docs: Add Valkey online store documentation - #6681
Merged
franciscojavierarceo merged 2 commits intoJul 31, 2026
Merged
Conversation
Valkey is the Linux Foundation community fork of Redis and a first-class managed engine on major clouds, but the docs could not answer whether Feast supports it. Add a page following the Dragonfly precedent: Feast's Redis online store issues only core commands, so Valkey works via type: redis with no code change. Verified against Valkey 8.1: feast apply, materialize, online retrieval, teardown, and key_ttl_seconds expiry all behave identically to Redis. Module-dependent features (e.g. vector search) are explicitly out of scope on the page. Signed-off-by: Larry Singleton <166439969+larrysingleton007@users.noreply.github.com>
The bigtable block in the online stores index pointed its link text at mysql.md, a copy-paste slip. Point it at bigtable.md. Signed-off-by: Larry Singleton <166439969+larrysingleton007@users.noreply.github.com>
franciscojavierarceo
approved these changes
Jul 31, 2026
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 this PR does / why we need it
Adds a documentation page for using Valkey as the online store. Valkey is the Linux Foundation community fork of Redis and a first-class managed engine on major clouds (e.g. Amazon ElastiCache), but the docs currently can't answer whether Feast supports it, and there's no
valkeymention anywhere in the repo.The docs already sanction exactly this pattern for Dragonfly: a docs-only page saying install
feast[redis], settype: redis, point it at the compatible store. This page follows that precedent, placed next todragonfly.mdin the index andSUMMARY.md.Unlike a pure protocol argument, the compatibility claim here is verified: against Valkey 8.1,
feast apply,feast materialize, online retrieval viaget_online_features,feast teardown, andkey_ttl_secondsexpiry all behave identically to Redis. That holds because the Redis online store only issues core commands (hash reads/writes, scans, expiry, pipelines). The page states what was verified and explicitly scopes out module-dependent features like vector search. No code changes, and no row added to the overview functionality matrix (Dragonfly doesn't have one either).A second commit fixes an adjacent copy-paste slip in the online stores index: the bigtable content-ref linked its text to
mysql.md.Which issue(s) this PR fixes
None (docs-only, following the Dragonfly precedent).