.put(IndexMetaData.SETTING_NUMBER_OF_SHARDS, 2)
.put(BlobIndices.SETTING_INDEX_BLOBS_PATH, tempBlobPath.getAbsolutePath())
.build();
blobIndices.createBlobTable("test", indexSettings).get();
ensureGreen();
assertTrue(blobEnvironment.shardLocation(new ShardId(".blob_test", 0), tempBlobPath).exists()
|| blobEnvironment.shardLocation(new ShardId(".blob_test", 1), tempBlobPath).exists());
assertTrue(blobEnvironment2.shardLocation(new ShardId(".blob_test", 0), tempBlobPath).exists()
|| blobEnvironment2.shardLocation(new ShardId(".blob_test", 1), tempBlobPath).exists());
blobIndices.createBlobTable("test2", indexSettings).get();
ensureGreen();
assertTrue(blobEnvironment.shardLocation(new ShardId(".blob_test2", 0), tempBlobPath).exists()
|| blobEnvironment.shardLocation(new ShardId(".blob_test2", 1), tempBlobPath).exists());
assertTrue(blobEnvironment2.shardLocation(new ShardId(".blob_test2", 0), tempBlobPath).exists()
|| blobEnvironment2.shardLocation(new ShardId(".blob_test2", 1), tempBlobPath).exists());
blobIndices.dropBlobTable("test").get();
assertFalse(blobEnvironment.indexLocation(new Index(".blob_test"), tempBlobPath).exists());
assertFalse(blobEnvironment2.indexLocation(new Index(".blob_test"), tempBlobPath).exists());