Я столкнулся со следующей проблемой при настройке Cassandra 1.0. То же самое работает для 0.8.7
# cassandra-cli -h x.x.x.x -f RTSCFs.sch
Connected to: "Real Time Stats" on x.x.x.x/9160
Authenticated to keyspace: Stats
39c3e120-fa24-11e0-0000-61d449114eff
Waiting for schema agreement...
The schema has not settled in 10 seconds; further migrations are ill-advised until it does.
Versions are 39c3e120-fa24-11e0-0000-61d449114eff:[x.x.x.x], 317eb8f0-fa24-11e0-0000-61d449114eff:[x.x.x.y]
Я пробовал это http://wiki.apache.org/cassandra/FAQ#schema_disagreement
Но теперь, когда я перезагружаю кластер, я получаю
`org.apache.cassandra.config.ConfigurationException: Invalid definition for comparator` org.apache.cassandra.db.marshal.CompositeType
Это мое пространство ключей defn
create keyspace Stats with placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' and strategy_options={replication_factor:1};
Это мой CF CFN
create column family Sample_Stats with default_validation_class=CounterColumnType
and key_validation_class='CompositeType(UTF8Type,UTF8Type)'
and comparator='CompositeType(UTF8Type, UTF8Type)'
and replicate_on_write=true;
Чего мне не хватает?