我正在使用cassandra db,而我在某些时候使用select会得到此异常?
Traceback (most recent call last):
File "bin/cqlsh", line 1001, in perform_statement_untraced
self.cursor.execute(statement, decoder=decoder)
File "bin/../lib/cql-internal-only-1.4.0.zip/cql-1.4.0/cql/cursor.py", line 81, in execute
return self.process_execution_results(response, decoder=decoder)
File "bin/../lib/cql-internal-only-1.4.0.zip/cql-1.4.0/cql/thrifteries.py", line 131, in process_execution_results
raise Exception('unknown result type %s' % response.type)
Exception: unknown result type None
任何人都可以解释为什么会发生这种异常,并且我也会收到内部应用程序错误。
此错误消息实际意味着什么?
编辑:我第一次收到此错误,下次正常运行。我不知道为什么会这样?
//cql query via cqlsh
select * from event_logging limit 5;