I use a single Cassandra node, and I intend to run some queries to check the response time. In some queries, after 10 seconds of execution, the following error occurs:
OperationTimedOut: errors = {}, last_host = 127.0.0.1
So, I executed the following command:
sudo gedit /usr/bin/cqlsh.py
And changed the cqlsh.py file:
However, when I try to run the query again, cql returns the same error after 10 seconds:
OperationTimedOut: errors = {}, last_host = 127.0.0.1
What do I need to do so that the request does not have a response timeout?
source share