Can I change allow_mult to false on map bucket/bucket type in riak?

181 views Asked by At

How can I change the allow_mult property to false on map data type bucket or bucket type?

I tried this but not working.

>riak-admin bucket-type update maps '{"props":{"allow_mult":false}}'

Error updating bucket type maps: Cannot change datatype bucket from allow_mult=true

1

There are 1 answers

0
dams On BEST ANSWER

Why do you want to turn allow_mult to false ? I think it's needed for the map data type to work properly. Values stored in it will properly automatically converge by themselves, so you'll never see siblings from the client point of view, but I suspect CRDTs need allow_mult to be true.