我的图形数据库有350万个节点大小的数据库是1.6GB我试图通过neo4jshell以下查询更新所有节点的属性.
neo4jshell
Match (p:Person) set p.regId= toInt(p.regId) ;
在这之前我已经在Person上添加了属性索引regId.在执行期间,抛出以下错误
regId
java.lang.MemoryError:超出了GC开销限制
neo4j cypher
cypher ×1
neo4j ×1