// First we have to create an index and attach it to a bucket
// and the 'default' bucket type can't be used for search
BinaryValue searchBucket = BinaryValue.create("search_bucket");
YokozunaIndex index = new YokozunaIndex("test_index");
YzPutIndexOperation putOp = new YzPutIndexOperation.Builder(index).build();
cluster.execute(putOp);
putOp.await();
assertTrue(putOp.isSuccess());
assureIndexExists("test_index");
Namespace namespace = new Namespace(yokozunaBucketType, searchBucket);
StoreBucketPropsOperation propsOp =