Details
-
Improvement
-
Status: Resolved
-
P2
-
Resolution: Fixed
-
2.4.0
Description
The CassandraIO currently uses the mapper to perform writes in a synchronous fashion.
This implies that writes are serialized and is a very suboptimal way of writing to Cassandra.
The IO should use the saveAsync() method instead of save() and should wait for completion each time 100 queries are in flight, in order to avoid overwhelming clusters.