The following query returns 2,765 rows:
cqlsh:test> select * from events where solr_query='active:true';
Adding a limit to the above query results in an rpc_timeout:
cqlsh:test> select * from events where solr_query='active:true' limit 10;
Request did not complete within rpc_timeout.
cqlsh:test>
I get the same results using the JDBC driver.
The events column family contains over 10,000 rows. The following query also fails:
cqlsh:test> select * from events where solr_query='active:false';
Request did not complete within rpc_timeout.
I don't see any log messages related to the queries in the cassandra logs.
