Cassandra module actually handles such type of exception here: https://github.com/apache/ignite/blob/master/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java#L164 <https://github.com/apache/ignite/blob/master/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java#L164>
in *handlePreparedStatementClusterError* method. Cassandra driver however can still log this. As another case, under high load, if it failed to execute this statement all 20 attempts - it will report the last error. Which in your case could be exactly *InvalidQueryException*. It's easy to check the second assumption just looking at the logs - you should see there messages like this: *Trying <number> attempt to execute Cassandra CQL statement: <CQL statement>* Igor -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Ignite-Cassandra-Exception-tp13529p13542.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
