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


Java BatchInserterIndex.add方法代码示例

本文整理汇总了Java中org.neo4j.unsafe.batchinsert.BatchInserterIndex.add方法的典型用法代码示例。如果您正苦于以下问题:Java BatchInserterIndex.add方法的具体用法?Java BatchInserterIndex.add怎么用?Java BatchInserterIndex.add使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.neo4j.unsafe.batchinsert.BatchInserterIndex的用法示例。


在下文中一共展示了BatchInserterIndex.add方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testInsertionSpeed

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
@Ignore
@Test
public void testInsertionSpeed() throws Exception
{
    BatchInserter inserter = BatchInserters.inserter( dbRule.getStoreDirAbsolutePath() );
    BatchInserterIndexProvider provider = new LuceneBatchInserterIndexProvider( inserter );
    BatchInserterIndex index = provider.nodeIndex( "yeah", EXACT_CONFIG );
    index.setCacheCapacity( "key", 1000000 );
    long t = currentTimeMillis();
    for ( int i = 0; i < 1000000; i++ )
    {
        Map<String, Object> properties = map( "key", "value" + i );
        long id = inserter.createNode( properties );
        index.add( id, properties );
    }
    System.out.println( "insert:" + ( currentTimeMillis() - t ) );
    index.flush();

    t = currentTimeMillis();
    for ( int i = 0; i < 1000000; i++ )
    {
        count( (Iterator<Long>) index.get( "key", "value" + i ) );
    }
    System.out.println( "get:" + ( currentTimeMillis() - t ) );
}
 
开发者ID:neo4j-contrib,项目名称:neo4j-lucene5-index,代码行数:26,代码来源:BatchInsertionIT.java

示例2: testBatchIndexToAutoIndex

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
@Test
public void testBatchIndexToAutoIndex() throws IOException {
  BatchInserter inserter = BatchInserters.inserter(new File(path));
  BatchInserterIndexProvider indexProvider = new LuceneBatchInserterIndexProvider(inserter);
  BatchInserterIndex index =
      indexProvider.nodeIndex("node_auto_index", MapUtil.stringMap("type", "exact"));
  long node = inserter.createNode(MapUtil.map("foo", "bar"));
  index.add(node, MapUtil.map("foo", "bar"));
  index.flush();
  assertThat("Batch indexed node can be retrieved", index.get("foo", "bar").next(), is(node));
  indexProvider.shutdown();
  inserter.shutdown();
  graphDb = getGraphDb();
  try (Transaction tx = graphDb.beginTx()) {
    assertThat("AutoIndex is not enabled after reopening the graph", graphDb.index()
        .getNodeAutoIndexer().isEnabled(), is(false));
    assertThat("AutoIndexed properties are not maintained after closing the graph", graphDb
        .index().getNodeAutoIndexer().getAutoIndexedProperties(), is(empty()));
    assertThat("Batch index properties are in the index", graphDb.index().getNodeAutoIndexer()
        .getAutoIndex().query("foo", "bar").size(), is(1));
    tx.success();
  }
}
 
开发者ID:SciGraph,项目名称:SciGraph,代码行数:24,代码来源:Neo4jIndexingTest.java

示例3: getOrCreateUserNodeID

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
private static long getOrCreateUserNodeID(final String userid,
                                          final Map<String, Long> usersNodesMap,
                                          final BatchInserterIndex usersIndex,
                                          final BatchInserter inserter,
                                          final Label label) {

    long userNodeID;

    if (usersNodesMap.containsKey(userid)) {
        userNodeID = usersNodesMap.get(userid);
    } else {
        userNodeID = inserter.createNode(MapUtil.map("node_id", userid), label);
        usersNodesMap.put(userid, userNodeID);
        usersIndex.add(userNodeID, MapUtil.map("node_id", userid));
    }

    return userNodeID;

}
 
开发者ID:inveniosoftware-contrib,项目名称:obelix,代码行数:20,代码来源:ObelixBatchImport.java

示例4: getOrCreateItemNodeID

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
private static long getOrCreateItemNodeID(final String itemid,
                                          final Map<String, Long> itemsNodesMap,
                                          final BatchInserterIndex itemsIndex,
                                          final BatchInserter inserter,
                                          final Label label) {

    long itemNodeID;

    if (itemsNodesMap.containsKey(itemid)) {
        itemNodeID = itemsNodesMap.get(itemid);
    } else {
        itemNodeID = inserter.createNode(MapUtil.map("node_id", itemid), label);
        itemsNodesMap.put(itemid, itemNodeID);
        itemsIndex.add(itemNodeID, MapUtil.map("node_id", itemid));
    }

    return itemNodeID;

}
 
开发者ID:inveniosoftware-contrib,项目名称:obelix,代码行数:20,代码来源:ObelixBatchImport.java

示例5: getOrCreateRelatinshipID

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
private static long getOrCreateRelatinshipID(final String timestamp,
                                             final long userNodeid,
                                             final long itemNodeid,
                                             final Map<String, Long> relationshipsMap,
                                             final BatchInserterIndex relationshipIndex,
                                             final BatchInserter inserter,
                                             final RelationshipType relType) {

    long relationID;
    String uniqueRelationID = userNodeid + itemNodeid + timestamp;
    if (relationshipsMap.containsKey(uniqueRelationID)) {
        relationID = relationshipsMap.get(uniqueRelationID);
    } else {

        relationID = inserter.createRelationship(userNodeid, itemNodeid, relType,
                MapUtil.map("timestamp", timestamp));

        relationshipsMap.put(uniqueRelationID, relationID);
        relationshipIndex.add(relationID, MapUtil.map("useritem", uniqueRelationID));
    }

    return relationID;

}
 
开发者ID:inveniosoftware-contrib,项目名称:obelix,代码行数:25,代码来源:ObelixBatchImport.java

示例6: createNode

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
private synchronized void createNode(String labelName, Map<String, Object> properties, BatchInserterIndex idx,
		String pk) {
	idx.add(this.inserter.createNode(properties, DynamicLabel.label(labelName)),
			MapUtil.map(pk, properties.get(pk)));
	long n = this.counter.get(labelName);
	this.counter.put(labelName, ++n);
	if(n % this.flushInterval == 0)
		idx.flush();
}
 
开发者ID:bigbai0210,项目名称:Oracle2Neo4j,代码行数:10,代码来源:NeoDb.java

示例7: indexNodeInBatchIndex

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
/**
 * Push a node importId into the batch index.
 *
 * @param indexName     The batch index name
 * @param node          Neo4j identifier
 * @param importIdValue Import identifier
 */
public void indexNodeInBatchIndex(String indexName, long node, Object importIdValue) {
    if (batchInserterIndexes.containsKey(indexName)) {
        BatchInserterIndex index = batchInserterIndexes.get(indexName);

        Map<String, Object> props = new HashMap<>();
        props.put(BACTH_INDEX_ID_NAME, importIdValue);
        index.add(node, props);
    } else {
        log.trace("Can't index node " + node + "/" + importIdValue + " into a none existant index [" + indexName + "]");
    }
}
 
开发者ID:sim51,项目名称:neo4j-talend-component,代码行数:19,代码来源:Neo4jBatchDatabase.java

示例8: batchInsert

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
@Test
public void batchInsert() throws Exception
{
    Neo4jTestCase.deleteFileOrDirectory( new File(
            "target/neo4jdb-batchinsert" ) );
    // START SNIPPET: batchInsert
    BatchInserter inserter = BatchInserters.inserter( "target/neo4jdb-batchinsert" );
    BatchInserterIndexProvider indexProvider =
            new LuceneBatchInserterIndexProvider( inserter );
    BatchInserterIndex actors =
            indexProvider.nodeIndex( "actors", MapUtil.stringMap( "type", "exact" ) );
    actors.setCacheCapacity( "name", 100000 );

    Map<String, Object> properties = MapUtil.map( "name", "Keanu Reeves" );
    long node = inserter.createNode( properties );
    actors.add( node, properties );

    //make the changes visible for reading, use this sparsely, requires IO!
    actors.flush();

    // Make sure to shut down the index provider as well
    indexProvider.shutdown();
    inserter.shutdown();
    // END SNIPPET: batchInsert

    GraphDatabaseService db = new TestGraphDatabaseFactory().newEmbeddedDatabase( "target/neo4jdb-batchinsert" );
    try ( Transaction tx = db.beginTx() )
    {
        Index<Node> index = db.index().forNodes( "actors" );
        Node reeves = index.get( "name", "Keanu Reeves" ).next();
        assertEquals( node, reeves.getId() );
    }
    db.shutdown();
}
 
开发者ID:neo4j-contrib,项目名称:neo4j-lucene5-index,代码行数:35,代码来源:ImdbDocTest.java

示例9: addToLegacyNodeIndex

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
/**
 * @param indexName 
 * @param node
 */
public static void addToLegacyNodeIndex(Neo4ArtLegacyIndex neo4ArtLegacyIndex, Node node)
{
  BatchInserterIndex batchInserterIndex = getBatchInserterIndexProviderInstance().nodeIndex(neo4ArtLegacyIndex.getName(), getLegacyNodeIndexConfig(neo4ArtLegacyIndex.getType()));
  
  if (batchInserterIndex == null)
  {
    throw new IllegalArgumentException("Index " + neo4ArtLegacyIndex.getName() + " doesn't exists. You must create it before adding something to it.");
  }    
  
  batchInserterIndex.add(node.getNodeId(), node.getProperties());
}
 
开发者ID:neo4art,项目名称:neo4art,代码行数:16,代码来源:Neo4ArtBatchInserterSingleton.java

示例10: copyNFlushNClearIndex

import org.neo4j.unsafe.batchinsert.BatchInserterIndex; //导入方法依赖的package包/类
private void copyNFlushNClearIndex(final ObjectLongOpenHashMap<String> tempIndex, final BatchInserterIndex neo4jIndex,
                                   final String indexProperty, final String indexName) {

	BatchNeo4jProcessor.LOG.debug("start pumping '{}' index of size '{}'", indexName, tempIndex.size());

	final Object[] keys = tempIndex.keys;
	final long[] values = tempIndex.values;
	final boolean[] states = tempIndex.allocated;

	BatchNeo4jProcessor.LOG.debug("keys size = '{}' :: values size = '{}' :: states size = '{}'", keys.length, values.length, states.length);

	int j = 0;
	long tick = System.currentTimeMillis();
	int sinceLast = 0;

	for (int i = 0; i < states.length; i++) {

		if (states[i]) {

			neo4jIndex.add(values[i], MapUtil.map(indexProperty, keys[i].toString()));

			j++;

			final int entryDelta = j - sinceLast;
			final long timeDelta = (System.currentTimeMillis() - tick) / 1000;

			if (entryDelta >= 1000000 || timeDelta >= 60) {

				sinceLast = j;
				final double duration = (double) entryDelta / timeDelta;

				BatchNeo4jProcessor.LOG.debug("wrote '{}' entries @ ~{} entries/second.", j, duration);

				tick = System.currentTimeMillis();
			}
		}
	}

	BatchNeo4jProcessor.LOG.debug("finished pumping '{}' index; wrote '{}' entries", indexName, j);

	BatchNeo4jProcessor.LOG.debug("start flushing and clearing index");

	neo4jIndex.flush();
	tempIndex.clear();

	BatchNeo4jProcessor.LOG.debug("finished flushing and clearing index");
}
 
开发者ID:dswarm,项目名称:dswarm-graph-neo4j,代码行数:48,代码来源:BatchNeo4jProcessor.java


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