Search before asking
Motivation
Fluss KV currently supports point lookups, but RocksDB allows iterators, range, and prefix scans.
For small tables (hundreds of rows or a few thousands), that can be used to create dashboards often need to periodically read all keys.
Goal: Assume I have a front-end and I want to create a dashboard to show < 1-2k values.. In this scenario, I could use the fluss client directly to periodically query the whole kv store
Solution
We can expose functionality to the api to allow a full scan (with snapshot consistency) to simplify such use cases.
An implementation can be found here and for easier reviews it can be broken down to the following individuals PRs:
Search before asking
Motivation
Fluss KV currently supports point lookups, but RocksDB allows iterators, range, and prefix scans.
For small tables (hundreds of rows or a few thousands), that can be used to create dashboards often need to periodically read all keys.
Goal: Assume I have a front-end and I want to create a dashboard to show < 1-2k values.. In this scenario, I could use the fluss client directly to periodically query the whole kv store
Solution
We can expose functionality to the api to allow a full scan (with snapshot consistency) to simplify such use cases.
An implementation can be found here and for easier reviews it can be broken down to the following individuals PRs: