MapUpdate update = new MapUpdate();
UpdateMap store = new UpdateMap.Builder(key, update)
.withContext(context)
.withOption(Option.DW, new Quorum(1))
.withOption(Option.PW, new Quorum(1))
.withOption(Option.N_VAL, 1)
.withOption(Option.RETURN_BODY, true)
.withOption(Option.SLOPPY_QUORUM, true)
.withOption(Option.TIMEOUT, 1000)
.withOption(Option.W, new Quorum(1))
.build();
client.execute(store);
ArgumentCaptor<DtUpdateOperation> captor =