Hi, I am using an LWT Insert transaction similar to:
INSERT INTO table1 (code, id, subpart) VALUES (:code, :id, :subpart) IF NOT EXISTS With readConsistency="LOCAL_SERIAL" writeConsistency="LOCAL_QUORUM" Cassandra Driver: 3.6.0 Cassandra Version: Cassandra 3.11.2 The problem is that I am getting* [applied] false* on the *first write* to cassandra. I have set retry policy as writeTimes = 0, so no retries are attempted. My application logs for reference: c-7967981443032352 - [INFO ] 2019-06-18T19:46:16.276Z [pool-15-thread-5] CreateService - SubPartition 104 c-7967981443032352 - [INFO ] 2019-06-18T19:46:16.805Z [pool-15-thread-5] *Repository - Row[false, A, 1, 104]* c-7967981443032352 - [INFO ] 2019-06-18T19:46:16.805Z [pool-15-thread-5] CreateService - SubPartition 104 CodeNumber 75191 *DuplicateCodeGenerated A* This is causing my count of writes to tables to differ from required 100000, to 100001, writing extra codes. Please guide here. -- Regards, Upasana Sharma
