Я получаю следующую ошибку.
cassandra.ReadTimeOut: Error from server: code =1200 [Coordinator node timed out waiting for replica nodes' responses] message = Operation timed out - received only 0 responses." info={consistency: 'LOCAL_ONE',required_responses": 1, 'received_responses": 0}
это запрос, который он выполняет
query = "select col1,col2,col3,col4 from table where timestamp >= last_hour and <= current_hour ALLOW FILTERING"
last_hour и current_hour - переменные, которые захватывают текущее время и последние 1 час времени
тогда я делаю
queryResult = session.execute_async(query)
и получаю ошибку.
Иногда она просто успешно запускается, а в других выдает эту ошибку.