Neo4J集群 - 螺栓+路由

时间:2017-08-22 15:37:50

标签: neo4j routing cluster-computing bolt

Neo4j Document说我们在使用群集模式/设置时可以使用 bolt + routing 。我可以使用单个节点与螺栓连接没有任何问题,但如果我使用群集模式/设置它给我以下错误。

Caused by: org.neo4j.driver.v1.exceptions.ClientException: 'bolt+routing' is not a supported transport (in 'bolt+routing://username:password@server.com:7687', available transports are: [bolt].

在集群模式下,如果我只是使用
bolt+routing://username:password@server.com:7687,我会收到如下所示的NotALeader错误

config.Neo4jConfiguration: Intercepted exception Exception in thread "main" org.neo4j.ogm.exception.CypherException: Error executing Cypher: Neo.ClientError.Cluster.NotALeader at org.neo4j.ogm.drivers.bolt.transaction.BoltTransaction.commit(BoltTransaction.java:75)

注意:我正在将Spring Data Neo4j用于我的应用程序

2 个答案:

答案 0 :(得分:1)

文档说," URI中的地址必须是核心服务器的地址。" 您可以在neo4j.conf中将集群成员设置为具有此配置的核心:

dbms.mode=CORE

在浏览器中,您可以检查成员角色:

CALL dbms.cluster.role()

答案 1 :(得分:0)

OGM螺栓驱动程序版本(neo4j-ogm-bolt-driver)应为2.1.0

Spring SDN Doc的引用有助于解决问题。