"bank, and of having nothing to do: once or twice she had peeped into the " +
"book her sister was reading, but it had no pictures or conversations in " +
"it, 'and what is the use of a book,' thought Alice 'without pictures or " +
"conversation?'"));
Location location = new Location(namespace, BinaryValue.unsafeCreate("p1".getBytes()));
StoreOperation storeOp =
new StoreOperation.Builder(location)
.withContent(obj)
.build();
cluster.execute(storeOp);
storeOp.get();
obj.setValue(BinaryValue.create("So she was considering in her own mind (as well as she could, for the " +
"hot day made her feel very sleepy and stupid), whether the pleasure " +
"of making a daisy-chain would be worth the trouble of getting up and " +
"picking the daisies, when suddenly a White Rabbit with pink eyes ran " +
"close by her."));
location = new Location(namespace, BinaryValue.unsafeCreate("p2".getBytes()));
storeOp =
new StoreOperation.Builder(location)
.withContent(obj)
.build();
cluster.execute(storeOp);
storeOp.get();
obj.setValue(BinaryValue.create("The rabbit-hole went straight on like a tunnel for some way, and then " +
"dipped suddenly down, so suddenly that Alice had not a moment to think " +
"about stopping herself before she found herself falling down a very deep " +
"well."));
location = new Location(namespace, BinaryValue.unsafeCreate("p3".getBytes()));
storeOp =
new StoreOperation.Builder(location)
.withContent(obj)
.build();
cluster.execute(storeOp);
storeOp.get();
String bName = namespace.getBucketNameAsString();
String bType = namespace.getBucketTypeAsString();
String query = "{\"inputs\":[[\"" + bName + "\",\"p1\",\"\",\"" + bType + "\"]," +