I was running some tests to query data from cassandra cluster and I notice small delay when a node is down to query data. I tested with both version 3.5 and 4.3.1 drivers. The delay is seen only when prepare flag is set to true in query options and when a table with data is queried for the first time. Is this delay expected or is this an issue?
This is how I tested.
Have a cassandra cluster with 3 nodes and each node running in one VM.
Ran a script to create a keyspace (simplestrategy and replication factor of 3) and 10 tables and few records to each table.
Ran a script to query data (prepare=true query option) from each table and everything worked fine without any delay as all nodes are up.
Brought one cassandra node down by shutting down the VM.
Ran the script to query data and I see delay of around 3 seconds when a table is queried for first time. The delay is seen only when prepare=true is set.
Below is the link to my scripts and output of my tests https://drive.google.com/drive/folders/1_JLnyFzGtNE8DtvDhIJ9jEb4lhgCspbC?usp=sharing
Thanks Sarath
Can you identify if the delay is made when calling connect() method or when calling execute()?
It can also be helpful to start logging before running connect() (move it one line above).
The delay is happening in both places. Added the new logs with both 4.3.1 driver and 3.5 driver. I am just calling execute in a loop.
Link to logs and test code :
Thanks to all the info you provided, I was able to reproduce it.
I’ve summarized the underlying cause in NODEJS-584.
This is unlikely to occur in production as query preparation occurs once in the application lifetime. Once query preparation ends, the latency spike will no longer happen and reconnection attempts will be made in the background.
If you use fewer number of different queries and/or a higher number of executions, you should see latency stabilizing. For example, use 6 different queries/tables and 50 executions, after the first 6 queries, the response time should be predictable.
Thanks for your dedication providing so detailed info!!!
I’ll close this ticket, you can follow the development for more info.
Additionally, if you want to avoid this issue altogether, you can set prepareOnAllHosts to false in your client options: