...
Below are the two batch types we executed for partial writes
LOGGED
UNLOGGED
In cassandra doc it specifies that to increase the performance UNLOGGED type should be used.
With LOGGED type the data got inserted and updated after
WriteTimeoutException
.With UNLOGGED type the data got inserted and updated after
WriteTimeoutException
LOGGED and UNLOGGED batch types, inserts data and return success response even with acknowledgement error.In cassandra docs, it is suggested to go with UNLOGGED batch type for better performance.