When sending a request using Astyanax, the contact point must always be executed. Training begins after you start writing several replicas, and the driver needs to work out where to send the extra replicated data (because, as you know, if you have more than 1 node, the data is written to several partitions)
What exactly do I mean?
127.0.0.1 <--- seed 127.0.0.2 127.0.0.3 127.0.0.4 // code where you initialize Astyanax ... .setSeeds("127.0.0.1") // this node always has to be available ...
source share