英文:
How to un-quarantine a neo4j instance
问题
抱歉,无法提供代码部分的翻译。以下是翻译好的文本部分:
我使用的是 Neo4j 5.3,最近我正在处理一些 LOAD CSV
命令,但这些命令导致了实例崩溃。因此,我出现了以下错误:
数据库 "neo4j" 不可用,其状态为 "隔离"。
我在 neo4j.conf
文件中更改了堆大小并重新启动了数据库:
server.memory.heap.initial_size=4096m
server.memory.heap.max_size=4096m
但仍然看到相同的错误。是否有命令可以启动一个隔离状态的实例(在增加堆空间后)?
英文:
I am on Neo4j 5.3 and recently I was working on some LOAD CSV
commands that panicked the instance. As a result, I have the following error:
Database "neo4j" is unavailable, its status is "quarantined".
I changed the heap size in the neo4j.conf
file and restarted the db:
server.memory.heap.initial_size=4096m
server.memory.heap.max_size=4096m
But still see the same error. Is there a command to start a quarantined instance (after bumping up the heap space)?
答案1
得分: 1
Resolved: 调用 dbms.quarantineDatabase("neo4j", false)
英文:
Resolved: CALL dbms.quarantineDatabase("neo4j", false)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论