It seems it hasn't been implemented in the following code..
public class ProxyBulkLoader implements BulkLoader {
private BulkLoader real;
public ProxyBulkLoader(StandardJanusGraph graph){
String backend = graph.getConfiguration().getConfiguration().get(STORAGE_BACKEND);
if ("cassandrathrift".equals(backend)){
real = new CassandraSSTableLoader();
}else if ("hbase".equals(backend)){
// ignore
}else if ("bigtable".equals(backend)){
// ignore
}else {
}
}
my config file looks like below:
cache.db-cache = true
cache.db-cache-clean-wait = 20
cache.db-cache-time = 180000
cache.db-cache-size = 0.5
storage.backend=cql
storage.cql.keyspace=graph1
gremlin.graph=org.janusgraph.core.JanusGraphFactory
storage.hostname=xx
index.base.index-name=graph1
index.base.backend=elasticsearch
index.base.hostname=xx:xx
index.base.elasticsearch.create.ext.number_of_shards=3
index.base.elasticsearch.create.ext.number_of_replicas=1
index.base.elasticsearch.create.ext.shard.check_on_startup=true
index.base.elasticsearch.create.ext.refresh_interval=10s
query.batch=true
ids.block-size=100000000
ids.renew-percentage=0.3
schema.default=none
storage.batch-loading=true
It seems it hasn't been implemented in the following code..
my config file looks like below: