docs
docs copied to clipboard
Feedback: Batch Delete Expired Data with Row-Level TTL - missing new parameter ttl_select_rate_limit in 23.2
Steven Hand (hand-crdb) commented:
Page: https://cockroachlabs.com/docs/v23.2/row-level-ttl.html
What is the reason for your feedback?
[X] Missing the information I need
[ ] Too complicated
[ ] Out of date
[ ] Something is broken
[ ] Other
Additional details
The page does not include the new TTL parameter ttl_select_rate_limit. (Note it is documented in the cluster settings page).
For example:
CREATE TABLE ttl_test (
id INT PRIMARY KEY,
expire_at TIMESTAMPTZ
) WITH (
ttl_expiration_expression = 'expire_at',
ttl_select_batch_size=100,
ttl_delete_batch_size=50,
ttl_delete_rate_limit=20,
ttl_select_rate_limit=25);
Jira Issue: DOC-9832