I want to create a Cassandra keyspace with 'network topology'. I can do it using CLI like this.
CREATE KEYSPACE test
WITH placement_strategy = 'NetworkTopologyStrategy'
AND strategy_options={us-east:6,us-west:3};
How can I achieve the same using Hector?
Thanks,
Bhathiya
For the record, this works.