How Cassandra handle blocking execute statement in datastax java driver
Blocking execute fethod from com.datastax.driver.core.Session public ResultSet execute(Statement statement); Comment on this method: This method blocks until at least some result has been received from the database. However, for SELECT queries, it does not guarantee that the result has been received in full. But it does guarantee that some response has been received from the database, and in particular guarantee that if the request is invalid, an exception will be thrown by this method. Non-blocking execute fethod from com.datastax.driver.core.Session public ResultSetFuture executeAsync