Re: Implementing an Abstract Replication Strategy

2019-01-29 Thread Ariel Weisberg
Hi, Cassandra expects a replication strategy to accept a description of a consistent hash ring and then use that description to determine what ranges on the consistent hash ring each node replicates. If you implement the API those operations should all just work. I'm not sure what the

Implementing an Abstract Replication Strategy

2019-01-29 Thread Seyed Hossein Mortazavi
I'm working on changing Cassandra for an academic project where the goal is to change the replicas are determined for each partition using static parameters that are set outside of Cassandra. I've read online that this can be achieved by extending the AbstractReplicationStrategy class. I have the