Open
Description
There is currently no way to change the property "dvv_enabled" for a Bucket.
When I set the "last_write_wins" property to true
, the following error is thrown:
Invalid bucket properties: [{dvv_enabled, "If last_write_wins is true, dvv_enabled must be false"}]
It would be nice to have a withDVV
method in StoreBucketProperties.Builder
so that we can disable the DVV:
new StoreBucketProperties.Builder(namespace) .withLastWriteWins(true) .withDVV(false) .build();
I am using the version 2.0.4.
Thanks!