截至目前,我正在使用 neo4j 1.8.2 EP 版本来集群 3 个实例。我曾经为我的 spring 应用程序有以下配置:
<bean id="graphDatabaseService" class="org.neo4j.kernel.HighlyAvailableGraphDatabase"
destroy-method="shutdown" scope="singleton">
<constructor-arg name="storeDir" index="0" value="E:/Neo4J Enterprise Edition/db1/graph.db" />
<constructor-arg index="1">
<map>
<entry key="ha.server_id" value="1" />
<entry key="ha.pull_interval" value="10"></entry>
<entry key="ha.server" value="192.168.1.10:6001" />
<entry key="ha.coordinators" value="192.168.1.10:2181,192.168.1.7:2182" />
</map>
</constructor-arg>
</bean>
<neo4j:config graphDatabaseService="graphDatabaseService" />
但根据 neo4j 1.9.3 企业版的新变化,Zookeeper 不再使用,协调器也不再起作用。如何重新配置它以使用 neo4j 1.9.3 企业版?任何链接/资源将不胜感激.. 谢谢。