connect to local cassandra nodes using datastax java driver?

前端 未结 1 709
灰色年华
灰色年华 2021-01-24 10:32

I am using datastax java driver 3.1.0 to connect to cassandra cluster and my cassandra cluster version is 2.0.10.

Below is the singleton class I am using to connect to c

相关标签:
1条回答
  • 2021-01-24 11:08

    By default the datastax drivers will only connect to nodes in the local DC. If you do not use withLocalDc it will attempt to discern the local datacenter from the DC of the contact point it is able to connect to.

    If you want the driver to fail over to host in remote data center(s) you should use withUsedHostsPerRemoteDc, i.e.:

    cluster.builder()        
      .withLoadBalancingPolicy(DCAwareRoundRobinPolicy.builder()
        .withLocalDc("DC1")
        .withUsedHostsPerRemoteDc(3).build())
    

    With this configuration, the driver will establish connections to 3 hosts in each remote DC, and only send queries to them if all hosts in the local datacenter is down.

    There are other strategies for failover to remote data centers. For example, you could run your application clients in each same physical data center as your C* data centers, and then when a physical data center fails, you can fail over at a higher level (like your load balancer).

    Also my pooling configuration options is right here which I am using in the above code?

    I think what you have is fine. The defaults are fine too.

    0 讨论(0)
提交回复
热议问题