public interface BatchInserter
shutdown()
must be invoked and complete successfully for the Neo4j store to be in
consistent state.
Only one thread at a time may work against the batch inserter, multiple threads performing concurrent access have to employ synchronization.
Transactions are not supported so if the JVM/machine crashes or you fail to
invoke shutdown()
before JVM exits the Neo4j store can be considered
being in non consistent state and the insertion has to be re-done from
scratch.
Modifier and Type | Method and Description |
---|---|
ConstraintCreator |
createDeferredConstraint(Label label)
Returns a
ConstraintCreator where details about the constraint can be
specified. |
IndexCreator |
createDeferredSchemaIndex(Label label)
Returns an
IndexCreator where details about the index to create can be
specified. |
void |
createNode(long id,
Map<String,Object> properties,
Label... labels)
Creates a node with supplied id and properties.
|
long |
createNode(Map<String,Object> properties,
Label... labels)
Creates a node assigning next available id to id and also adds any
properties supplied.
|
long |
createRelationship(long node1,
long node2,
RelationshipType type,
Map<String,Object> properties)
Creates a relationship between two nodes of a specific type.
|
Iterable<Label> |
getNodeLabels(long node) |
Map<String,Object> |
getNodeProperties(long nodeId)
Returns a map containing all the properties of this node.
|
long |
getReferenceNode()
Deprecated.
The reference node concept is obsolete - indexes are the
canonical way of getting hold of entry points in the graph.
|
BatchRelationship |
getRelationshipById(long relId)
Gets a relationship by id.
|
Iterable<Long> |
getRelationshipIds(long nodeId)
Returns an iterable over all the relationship ids connected to node with
supplied id.
|
Map<String,Object> |
getRelationshipProperties(long relId)
Returns a map containing all the properties of the relationships.
|
Iterable<BatchRelationship> |
getRelationships(long nodeId)
Returns an iterable of
relationships connected
to the node with supplied id. |
String |
getStoreDir()
Returns the path to this Neo4j store.
|
boolean |
nodeExists(long nodeId)
Checks if a node with the given id exists.
|
boolean |
nodeHasLabel(long node,
Label label) |
boolean |
nodeHasProperty(long node,
String propertyName)
Returns true iff the node with id
node has a property with name
propertyName . |
boolean |
relationshipHasProperty(long relationship,
String propertyName)
Returns true iff the relationship with id
relationship has a
property with name propertyName . |
void |
removeNodeProperty(long node,
String property)
Removes the property named
property from the node with id
id , if present. |
void |
removeRelationshipProperty(long relationship,
String property)
Removes the property named
property from the relationship with id
id , if present. |
void |
setNodeLabels(long node,
Label... labels)
Replaces any existing labels for the given node with the supplied list of labels.
|
void |
setNodeProperties(long node,
Map<String,Object> properties)
Sets the properties of a node.
|
void |
setNodeProperty(long node,
String propertyName,
Object propertyValue)
Sets the property with name
propertyName of node with id
node to the value propertyValue . |
void |
setRelationshipProperties(long rel,
Map<String,Object> properties)
Sets the properties of a relationship.
|
void |
setRelationshipProperty(long relationship,
String propertyName,
Object propertyValue)
Sets the property with name
propertyName of relationship with id
relationship to the value propertyValue . |
void |
shutdown()
Shuts down this batch inserter syncing all changes that are still only
in memory to disk.
|
long createNode(Map<String,Object> properties, Label... labels)
properties
- a map containing properties or null
if no
properties should be added.labels
- a list of labels to initially create the node with.void createNode(long id, Map<String,Object> properties, Label... labels)
id
- the id of the node to create.properties
- map containing properties or null
if no
properties should be added.labels
- a list of labels to initially create the node with.boolean nodeExists(long nodeId)
nodeId
- the id of the node.true
if the node exists.void setNodeProperties(long node, Map<String,Object> properties)
For best performance try supply all the nodes properties upon creation
of the node. This method will delete any existing properties so using it
together with getNodeProperties(long)
will have bad performance.
node
- the id of the node.properties
- map containing the properties or null
to
clear all properties.boolean nodeHasProperty(long node, String propertyName)
node
has a property with name
propertyName
.node
- The node id of the node to check.propertyName
- The property name to check forvoid setNodeLabels(long node, Label... labels)
node
- the node to set labels for.labels
- the labels to set for the node.Iterable<Label> getNodeLabels(long node)
node
- the node to get labels for.boolean nodeHasLabel(long node, Label label)
node
- the node to check.label
- the label to check.true
if a node has a given label, otherwise false
.boolean relationshipHasProperty(long relationship, String propertyName)
relationship
has a
property with name propertyName
.relationship
- The relationship id of the relationship to check.propertyName
- The property name to check forvoid setNodeProperty(long node, String propertyName, Object propertyValue)
propertyName
of node with id
node
to the value propertyValue
. If the property exists
it is updated, otherwise created.node
- The node id of the node whose property is to be setpropertyName
- The name of the property to setpropertyValue
- The value of the property to setvoid setRelationshipProperty(long relationship, String propertyName, Object propertyValue)
propertyName
of relationship with id
relationship
to the value propertyValue
. If the property
exists it is updated, otherwise created.relationship
- The node id of the relationship whose property is to
be setpropertyName
- The name of the property to setpropertyValue
- The value of the property to setMap<String,Object> getNodeProperties(long nodeId)
nodeId
- the id of the node.Iterable<Long> getRelationshipIds(long nodeId)
nodeId
- the id of the node.Iterable<BatchRelationship> getRelationships(long nodeId)
relationships
connected
to the node with supplied id.nodeId
- the id of the node.long createRelationship(long node1, long node2, RelationshipType type, Map<String,Object> properties)
node1
- the start node.node2
- the end node.type
- relationship type.properties
- map containing properties or null
if no
properties should be added.BatchRelationship getRelationshipById(long relId)
relId
- the relationship id.void setRelationshipProperties(long rel, Map<String,Object> properties)
For best performance try supply all the relationship properties upon
creation of the relationship. This method will delete any existing
properties so using it together with
getRelationshipProperties(long)
will have bad performance.
rel
- the id of the relationship.properties
- map containing the properties or null
to
clear all properties.Map<String,Object> getRelationshipProperties(long relId)
relId
- the id of the relationship.void removeNodeProperty(long node, String property)
property
from the node with id
id
, if present.node
- The id of the node from which to remove the propertyproperty
- The name of the propertyvoid removeRelationshipProperty(long relationship, String property)
property
from the relationship with id
id
, if present.relationship
- The id of the relationship from which to remove the
propertyproperty
- The name of the propertyIndexCreator createDeferredSchemaIndex(Label label)
IndexCreator
where details about the index to create can be
specified. When all details have been entered create
must be called for it to actually be created.
Creating an index enables indexing for nodes with the specified label. The index will
have the details supplied to the returned index creator
.
Indexes created with the method are deferred until the batch inserter is shut down, at
which point a background job will populate all indexes, i.e. the index
is not available during the batch insertion itself. It is therefore advisable to
create deferred indexes just before shutting down the batch inserter.label
- label
on nodes to be indexedIndexCreator
capable of providing details for, as well as creating
an index for the given label
.ConstraintCreator createDeferredConstraint(Label label)
ConstraintCreator
where details about the constraint can be
specified. When all details have been entered ConstraintCreator.create()
must be called for it to actually be created.
Creating a constraint will have the transaction creating it block on commit until
all existing data has been verified for compliance. If any existing data doesn't
comply with the constraint the transaction will not be able to commit, but
fail in Transaction.close()
.label
- the label this constraint is for.ConstraintCreator
capable of providing details for, as well as creating
a constraint for the given label
.void shutdown()
After this method has been invoked any other method call to this batch inserter is illegal.
String getStoreDir()
@Deprecated long getReferenceNode()
-1
if it doesn't exist.Copyright © 2002–2013 The Neo4j Graph Database Project. All rights reserved.