当前位置: 首页>>代码示例>>Java>>正文


Java StandardTransactionBuilder类代码示例

本文整理汇总了Java中com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder的典型用法代码示例。如果您正苦于以下问题:Java StandardTransactionBuilder类的具体用法?Java StandardTransactionBuilder怎么用?Java StandardTransactionBuilder使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


StandardTransactionBuilder类属于com.thinkaurelius.titan.graphdb.transaction包,在下文中一共展示了StandardTransactionBuilder类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: retrieveSchemaByName

import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入依赖的package包/类
@Override
public Long retrieveSchemaByName(String typeName) {
    // Get a consistent tx
    Configuration customTxOptions = backend.getStoreFeatures().getKeyConsistentTxConfig();
    StandardTitanTx consistentTx = null;
    try {
        consistentTx = StandardTitanGraph.this.newTransaction(new StandardTransactionBuilder(getConfiguration(),
                StandardTitanGraph.this, customTxOptions).groupName(GraphDatabaseConfiguration.METRICS_SCHEMA_PREFIX_DEFAULT));
        consistentTx.getTxHandle().disableCache();
        TitanVertex v = Iterables.getOnlyElement(QueryUtil.getVertices(consistentTx, BaseKey.SchemaName, typeName), null);
        return v!=null?v.longId():null;
    } finally {
        TXUtils.rollbackQuietly(consistentTx);
    }
}
 
开发者ID:graben1437,项目名称:titan1withtp3.1,代码行数:16,代码来源:StandardTitanGraph.java

示例2: retrieveSchemaRelations

import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入依赖的package包/类
@Override
public EntryList retrieveSchemaRelations(final long schemaId, final BaseRelationType type, final Direction dir) {
    SliceQuery query = queryCache.getQuery(type,dir);
    Configuration customTxOptions = backend.getStoreFeatures().getKeyConsistentTxConfig();
    StandardTitanTx consistentTx = null;
    try {
        consistentTx = StandardTitanGraph.this.newTransaction(new StandardTransactionBuilder(getConfiguration(),
                StandardTitanGraph.this, customTxOptions).groupName(GraphDatabaseConfiguration.METRICS_SCHEMA_PREFIX_DEFAULT));
        consistentTx.getTxHandle().disableCache();
        EntryList result = edgeQuery(schemaId, query, consistentTx.getTxHandle());
        return result;
    } finally {
        TXUtils.rollbackQuietly(consistentTx);
    }
}
 
开发者ID:graben1437,项目名称:titan1withtp3.1,代码行数:16,代码来源:StandardTitanGraph.java

示例3: 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();
}
 
开发者ID:graben1437,项目名称:titan1withtp3.1,代码行数:9,代码来源:VertexJobConverter.java

示例4: 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);
    }
}
 
开发者ID:graben1437,项目名称:titan1withtp3.1,代码行数:38,代码来源:IndexUpdateJob.java

示例5: retrieveSchemaByName

import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入依赖的package包/类
@Override
public Long retrieveSchemaByName(String typeName) {
    // Get a consistent tx
    Configuration customTxOptions = backend.getStoreFeatures().getKeyConsistentTxConfig();
    StandardTitanTx consistentTx = null;
    try {
        consistentTx = StandardTitanGraph.this.newTransaction(new StandardTransactionBuilder(getConfiguration(),
                StandardTitanGraph.this, customTxOptions).setGroupName(GraphDatabaseConfiguration.METRICS_SCHEMA_PREFIX_DEFAULT));
        consistentTx.getTxHandle().disableCache();
        TitanVertex v = Iterables.getOnlyElement(consistentTx.getVertices(BaseKey.SchemaName, typeName), null);
        return v!=null?v.getLongId():null;
    } finally {
        TXUtils.rollbackQuietly(consistentTx);
    }
}
 
开发者ID:graben1437,项目名称:titan0.5.4-hbase1.1.1-custom,代码行数:16,代码来源:StandardTitanGraph.java

示例6: retrieveSchemaRelations

import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入依赖的package包/类
@Override
public EntryList retrieveSchemaRelations(final long schemaId, final BaseRelationType type, final Direction dir) {
    SliceQuery query = queryCache.getQuery(type,dir);
    Configuration customTxOptions = backend.getStoreFeatures().getKeyConsistentTxConfig();
    StandardTitanTx consistentTx = null;
    try {
        consistentTx = StandardTitanGraph.this.newTransaction(new StandardTransactionBuilder(getConfiguration(),
                StandardTitanGraph.this, customTxOptions).setGroupName(GraphDatabaseConfiguration.METRICS_SCHEMA_PREFIX_DEFAULT));
        consistentTx.getTxHandle().disableCache();
        EntryList result = edgeQuery(schemaId, query, consistentTx.getTxHandle());
        return result;
    } finally {
        TXUtils.rollbackQuietly(consistentTx);
    }
}
 
开发者ID:graben1437,项目名称:titan0.5.4-hbase1.1.1-custom,代码行数:16,代码来源:StandardTitanGraph.java

示例7: buildTransaction

import com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder; //导入依赖的package包/类
@Override
public StandardTransactionBuilder buildTransaction() {
    return new StandardTransactionBuilder(getConfiguration(), this);
}
 
开发者ID:graben1437,项目名称:titan1withtp3.1,代码行数:5,代码来源:StandardTitanGraph.java


注:本文中的com.thinkaurelius.titan.graphdb.transaction.StandardTransactionBuilder类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。