I am using Cassandra for one of my application. I would like to use Prepared statement that Cassandra provides through cql. If I prepared a query,Is this is prepared in all nodes?.
Any help is appreciated.
I am using Cassandra for one of my application. I would like to use Prepared statement that Cassandra provides through cql. If I prepared a query,Is this is prepared in all nodes?.
Any help is appreciated.
No, I don't think it is BUT assuming you're using the Datastax Java driver, the driver will have you covered because it will attempt to re-prepare the statement when needed. See the handling of case UNPREPARED in RequestHandler.SpeculativeExecution#onSet and the use of the prepareAndRetry callback.