Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-16-2022 11:40 AM
Hello,
i am trying to import huge volumes of nodes and relationships in a Neo4j community edition database. I am trying to achive it through a Python client application and transactions. However while i was batch inserting relationships through long running transactions i experienced power failure and my computer terminated operation while a transaction creating relationships was executing. Does that mean that some nodes have write locks on them left from the unfinished transaction? Is there a way to check out all my nodes if they still have any write locks associated with them? How can i perform such a check? Through plain cypher code or through a library (e.g. APOC )? Thanks in advance for your time!
06-17-2022 11:56 AM
You can use
SHOW TRANSACTIONS [YIELD *]
// to get maximum detail
// or previously the user defined procedure
CALL dbms.listTransactions()
see https://neo4j.com/docs/cypher-manual/current/clauses/transaction-clauses/
All the sessions of the conference are now available online