Advertisement
Guest User

execute_prepared_cql3_query error

a guest
Feb 13th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. root@node002:~# java -cp /usr/share/cassandra/*:/usr/share/cassandra/lib/*:. TestCqlPaging -8556439609682453975 -8383299008991717734
  2. connected
  3. Trying request :
  4. SELECT * FROM "cf1" WHERE token("col1") > ? AND token("col1") <= ? LIMIT 1000 ALLOW FILTERING
  5. with bindvalues -8556439609682453975 and -8383299008991717734
  6. use execute_prepared_cql3_query
  7. use execute_prepared_cql3_query
  8. use execute_prepared_cql3_query
  9. Unknown exception
  10. Exception in thread "main" java.lang.AssertionError: java.lang.RuntimeException
  11. at TestCqlPaging.main(TestCqlPaging.java:136)
  12. Caused by: java.lang.RuntimeException
  13. at TestCqlPaging.main(TestCqlPaging.java:103)
  14. Caused by: TimedOutException()
  15. at org.apache.cassandra.thrift.Cassandra$execute_prepared_cql3_query_result.read(Cassandra.java:42710)
  16. at org.apache.thrift.TServiceClient.receiveBase(TServiceClient.java:78)
  17. at org.apache.cassandra.thrift.Cassandra$Client.recv_execute_prepared_cql3_query(Cassandra.java:1724)
  18. at org.apache.cassandra.thrift.Cassandra$Client.execute_prepared_cql3_query(Cassandra.java:1709)
  19. at TestCqlPaging.main(TestCqlPaging.java:91)
  20. root@node002:~# cqlsh -u admin -pfE9ykgKP6 -k test
  21. Connected to Preprod Cassandra PnS at localhost:9160.
  22. [cqlsh 3.1.8 | Cassandra 1.2.13-0hebex3 | CQL spec 3.0.0 | Thrift protocol 19.36.2]
  23. Use HELP for help.
  24. cqlsh:test> SELECT * FROM cf1 WHERE token("col1") > -8556439609682453975 AND token("col1") <= -8383299008991717734 LIMIT 1000 ALLOW FILTERING;
  25. cqlsh:test> exit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement