Readyset is a MySQL and Postgres wire-compatible caching layer that sits in front of existing databases to speed up queries and horizontally scale read throughput. Under the hood, ReadySet caches the results of cached select statements and incrementally updates these results over time as the underlying data changes.
We have two flags to control which tables are snapshotted and replicated by Readyset:
--replication-tables, which takes a list of the tables that should be snapshotted/replicated; and
--replication-tables-ignore, which takes a list of the tables that should not be snapshotted/replicated
Currently, these flags only work when we are connected to a Postgres upstream. We should fix this so the flags are respected when connected to MySQL as well.
Description
We have two flags to control which tables are snapshotted and replicated by Readyset:
--replication-tables
, which takes a list of the tables that should be snapshotted/replicated; and--replication-tables-ignore
, which takes a list of the tables that should not be snapshotted/replicatedCurrently, these flags only work when we are connected to a Postgres upstream. We should fix this so the flags are respected when connected to MySQL as well.
Change in user-visible behavior
Yes
Requires documentation change
No