如何取消隔离一个Neo4j实例

huangapple go评论79阅读模式
英文:

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)

huangapple
  • 本文由 发表于 2023年3月21日 01:09:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/75793285.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定