如何为lagom配置多个cassandra联系点?

时间:2017-02-24 18:31:39

标签: cassandra lagom

在Lagom中,似乎从服务定位器加载了联系点,该服务定位器只接受一个URI。我们如何指定多个cassandra接触点?

lagom.services {
 cas_native = "tcp://10.0.0.120:9042"
}

我尝试过设置akka持久性配置中的联系点,但似乎没有覆盖服务定位器配置。

1 个答案:

答案 0 :(得分:1)

我所缺少的是覆盖服务查找的会话提供程序:

session-provider = akka.persistence.cassandra.ConfigSessionProvider
contact-points = ["10.0.0.120", "10.0.3.114", "10.0.4.168"]
在lagom cassandra config中需要