Reputation: 433
We tried adding a new column to an existing table in Cassandra. It ended up giving an exception "org.apache.cassandra.exceptions.ConfigurationException: Column family ID mismatch".
Seems like some issue with Cassandra sync.
I want this issue to be resolved without any need to restart the Cassandra Nodes.
Can someone suggest the right approach to resolve this?
Thanks.
Upvotes: 1
Views: 612
Reputation: 2104
Flushing memtables (nodetool flush) should resolve the issue. Flushing does not require restarting cassandra whereas draining does.
See: Column family ID mismatch during ALTER TABLE
Upvotes: 0