--db-dir size limit? #43
-
The systems I intend to run ReadySet on have a much smaller amount of space available to them than my DB server does. With --durability=persistent, does ReadySet just keep going until it exhausts --db-dir? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
ReadySet needs to fully snapshot the tables in your upstream database in order to be able to cache query results that target those tables - this will take at least the amount of space as your db server, but likely more. You can limit the specific tables ReadySet snapshots by passing a list of tables to the |
Beta Was this translation helpful? Give feedback.
ReadySet needs to fully snapshot the tables in your upstream database in order to be able to cache query results that target those tables - this will take at least the amount of space as your db server, but likely more.
You can limit the specific tables ReadySet snapshots by passing a list of tables to the
--replication-tables
command line flag when running ReadySet, though then we'll only be able to cache queries that mention those tables