Hi, We are currently trying to convert an existing java web application to use cassandra, and while most of it works great :) we have a "small" issue.
After some time, we all connectivity seems to be lost and we get the following errors: com.datastax.driver.core.exceptions.NoHostAvailableException: All host(s) tried for query failed (tried: /10.61.70.107:9042 (com.datastax.driver.core.exceptions.TransportException: [/10.61.70.107] Connection has been closed), /10.61.70.108:9042 (com.datastax.driver.core.exceptions.TransportException: [/10.61.70.108] Connection has been closed)) com.datastax.driver.core.exceptions.NoHostAvailableException: All host(s) tried for query failed (tried: /10.61.70.107:9042 (com.datastax.driver.core.exceptions.DriverException: Timeout while trying to acquire available connection (you may want to increase the driver number of per-host connections)), /10.61.70.108:9042 (com.datastax.driver.core.exceptions.TransportException: [/10.61.70.108] Connection has been closed), /10.61.70.110:9042 (com.datastax.driver.core.exceptions.TransportException: [/10.61.70.110] Connection has been closed)) The errors persists, and the application needs to be restarted to recover. At application startup we create a cluster and a session which we reuse through out the application as pr. the documentation. We don't specify any other options when connecting than the IP's of the three servers. We are running cassandra 3.0.3 tar ball in EC2 in a cluster of three machines. The connections are made using v3.0.0 java driver. I have uploaded the configuration and logs from our cassandra cluster here: https://gist.github.com/anonymous/452e736b401317b5b38d The issue happend at 00:44:46. I would greatly appreciate any ideas as to what we are doing wrong to experience this? :) Thank you in advance! Yours sincerely, Bo Madsen