use of com.baidu.hugegraph.job.schema.IndexLabelRebuildJob in project incubator-hugegraph by apache.
the class SchemaTransaction method rebuildIndex.
@Watched(prefix = "schema")
public Id rebuildIndex(SchemaElement schema, Set<Id> dependencies) {
LOG.debug("SchemaTransaction rebuild index for {} with id '{}'", schema.type(), schema.id());
SchemaJob callable = new IndexLabelRebuildJob();
return asyncRun(this.graph(), schema, callable, dependencies);
}
Aggregations