Recently I found out about cassandra.concurrent available on the Python driver for Cassandra. On the docs, it says that if `protocol_version` si 3 or higher (which is our case) one can "safely experiment with higher levels of concurrency". I was wondering how we can find out what's our optimal value of `concurrency`.
With our protocol version we can't select how many connections we create, because the driver it uses connection pooling, so how can we find out the best value for this parameter?