Client errors

Client errors indicate that a problem occurred within the driver.

Driver timeout

All drivers can throw a driver timeout that indicates a timeout occurred when executing a CQL statement. The name of this error varies by driver. For example, the Java driver throws DriverTimeoutException, and the Python driver throws OperationTimedOut.

Cause

A driver timeout means the client-side timeout limit was reached before the driver received a response from the server-side coordinator. For example, a driver timeout can occur when a read query requests a large amount of data or when batch write sizes are large or span multiple partitions.

Resolution

To avoid driver timeouts, make sure the value of the client-side timeout is greater than the server-side read/write timeouts plus network latency:

x = max(Server read timeout,Server write timeout)

Client timeout > (x + Network latency)

The client side timeout is commonly configured in an execution profile or on the query execution method.

When reading or writing large amounts of data, avoid timeouts by making queries smaller and more efficient. For example, you can fetch large partitions in batches and execute queries asynchronously.

Retry policy

When a driver timeout occurs, you might not know if the data was modified. The requests might have been partially or fully processed by the server, but the client didn’t receive a response. While driver timeouts aren’t a subject for retry policies, you can implement custom logic based on these exceptions. For more information, see DataStax driver retry policies and Configure request tracing.

Other client errors

For other possible client errors, see your driver’s documentation.

Was this helpful?

Give Feedback

How can we improve the documentation?

© 2025 DataStax | Privacy policy | Terms of use | Manage Privacy Choices

Apache, Apache Cassandra, Cassandra, Apache Tomcat, Tomcat, Apache Lucene, Apache Solr, Apache Hadoop, Hadoop, Apache Pulsar, Pulsar, Apache Spark, Spark, Apache TinkerPop, TinkerPop, Apache Kafka and Kafka are either registered trademarks or trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries. Kubernetes is the registered trademark of the Linux Foundation.

General Inquiries: +1 (650) 389-6000, info@datastax.com