本文整理汇总了Java中com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder.start方法的典型用法代码示例。如果您正苦于以下问题:Java StandardTransactionBuilder.start方法的具体用法?Java StandardTransactionBuilder.start怎么用?Java StandardTransactionBuilder.start使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder
的用法示例。
在下文中一共展示了StandardTransactionBuilder.start方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: startTransaction
import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入方法依赖的package包/类
public static StandardTitanTx startTransaction(StandardTitanGraph graph) {
StandardTransactionBuilder txb = graph.buildTransaction().readOnly();
txb.setPreloadedData(true);
txb.checkInternalVertexExistence(false);
txb.dirtyVertexSize(0);
txb.vertexCacheSize(0);
return (StandardTitanTx)txb.start();
}
示例2: workerIterationStart
import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入方法依赖的package包/类
public void workerIterationStart(TitanGraph graph, Configuration config, ScanMetrics metrics) {
this.graph = (StandardTitanGraph)graph;
Preconditions.checkArgument(config.has(GraphDatabaseConfiguration.JOB_START_TIME),"Invalid configuration for this job. Start time is required.");
this.jobStartTime = Instant.ofEpochMilli(config.get(GraphDatabaseConfiguration.JOB_START_TIME));
if (indexName == null) {
Preconditions.checkArgument(config.has(INDEX_NAME), "Need to configure the name of the index to be repaired");
indexName = config.get(INDEX_NAME);
indexRelationTypeName = config.get(INDEX_RELATION_TYPE);
log.info("Read index information: name={} type={}", indexName, indexRelationTypeName);
}
try {
this.mgmt = (ManagementSystem)graph.openManagement();
if (isGlobalGraphIndex()) {
index = mgmt.getGraphIndex(indexName);
} else {
indexRelationType = mgmt.getRelationType(indexRelationTypeName);
Preconditions.checkArgument(indexRelationType!=null,"Could not find relation type: %s", indexRelationTypeName);
index = mgmt.getRelationIndex(indexRelationType,indexName);
}
Preconditions.checkArgument(index!=null,"Could not find index: %s [%s]",indexName,indexRelationTypeName);
log.info("Found index {}", indexName);
validateIndexStatus();
StandardTransactionBuilder txb = this.graph.buildTransaction();
txb.commitTime(jobStartTime);
writeTx = (StandardTitanTx)txb.start();
} catch (final Exception e) {
if (null != mgmt && mgmt.isOpen())
mgmt.rollback();
if (writeTx!=null && writeTx.isOpen())
writeTx.rollback();
metrics.incrementCustom(FAILED_TX);
throw new TitanException(e.getMessage(), e);
}
}