I am getting error while executing alter table script.
ServerError: java.lang.RuntimeException: java.util.concurrent.ExecutionException: org.apache.cassandra.exceptions.ConfigurationException: Column family ID mismatch (found e5da3980-83eb-11ec-8c56-1b3845d1a791; expected c8ac48d0-83eb-11ec-8c56-1b3845d1a791)
However when I describe table ,I am seeing newly created column present. But I am bot able to access the new column.Its throwing below error InvalidRequest: Error from server: code=2200 [Invalid query] message="Undefined name xxxxxxxxx in selection clause"
Please help on the the issue
Note : We have 6 nodes and average of 90GB per node
Describe Keyspace output
hgtValue value is newly added column it's reflecting in describe table output but when i query selecting hgtValue its giving the error
CREATE TABLE demo.demoTable ( projectid uuid, runid uuid, sampleid uuid, hgtValue text, PRIMARY KEY (projectid, runid, sampleid) )