-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import fails with error on "There is not enough memory to perform the current task." #12
Comments
This is strange. MATCH (q:GlobeCoordinate)
WHERE q.globe STARTS WITH 'http'
WITH
q,
TRIM(SPLIT(q.globe,'/')[-1]) AS itemId
MATCH (e:Entity) WHERE e.id = itemId
MERGE (q)-[:GLOBE_TYPE]->(e)
REMOVE q.globe if this fails too, could you try to insert a |
Without limit the following error comes up: |
Running this Query for several times works: I hope this helps to improve the code or do i have to do it manually every time ? |
sorry for closing ;-) |
My settings:
dbms.memory.heap.initial_size=8G
dbms.memory.heap.max_size=24G
Generating and linking claims (6) : 837.788ms
Started linking :Quantity to :Item
Linkied :Quantity to :Item : 15552434.502ms
Started linking :GlobeCoordinate to :Item
Structure {
signature: 127,
fields: [
{
code: 'Neo.TransientError.General.OutOfMemoryError',
message: 'There is not enough memory to perform the current task. Please ' +
"try increasing 'dbms.memory.heap.max_size' in the neo4j " +
"configuration (normally in 'conf/neo4j.conf' or, if you you " +
'are using Neo4j Desktop, found through the user interface) or ' +
'if you are running an embedded installation increase the heap ' +
"by using '-Xmx' command line flag, and then restart the " +
'database.'
}
]
}
exiting in 5 sec
The text was updated successfully, but these errors were encountered: