You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 0.9.2 it is possible to drop the default RP, meaning all subsequent writes that don't explicitly specify an RP will fail.
> use test
Using database test
> show retention policies on test
name duration replicaN default
default 0 1 true
foo 3h25m45.678s 1 false
> drop retention policy "default" on test
> show retention policies on test
name duration replicaN default
foo 3h25m45.678s 1 false
> insert foo,bar=baz value=123
ERR: retention policy not found
It is not possible to remove the default setting from a retention policy except by explicitly declaring another policy the default. I think the only way to end up without one is to drop the current default RP.
The text was updated successfully, but these errors were encountered:
This is to prevents users from putting their system into an awkward
state. It is a policy that all databases must have at least a default
retention policy.
Fixes issue #3699.
In 0.9.2 it is possible to drop the default RP, meaning all subsequent writes that don't explicitly specify an RP will fail.
It is not possible to remove the default setting from a retention policy except by explicitly declaring another policy the default. I think the only way to end up without one is to drop the current default RP.
The text was updated successfully, but these errors were encountered: