1

我们最近使用 cqlsh 4.0.1 升级到了 cassandra 2.0.1。我在使用 cqlsh 客户端时看到超时错误/管道损坏。请参阅下面的错误跟踪。我已使用 nodetool 验证集群已启动,并且我能够使用 mapreduce 进行读/写。请指教。

谢谢, 普拉泰克

Traceback (most recent call last):
  File "./bin/cqlsh", line 897, 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 80, in execute
    response = self.get_response(prepared_q, cl)
  File "./bin/../lib/cql-internal-only-1.4.0.zip/cql-1.4.0/cql/thrifteries.py", line 77, in get_response
    return self.handle_cql_execution_errors(doquery, compressed_q, compress, cl)
  File "./bin/../lib/cql-internal-only-1.4.0.zip/cql-1.4.0/cql/thrifteries.py", line 96, in handle_cql_execution_errors
    return executor(*args, **kwargs)
  File "./bin/../lib/cql-internal-only-1.4.0.zip/cql-1.4.0/cql/cassandra/Cassandra.py", line 1782, in execute_cql3_query
    self.send_execute_cql3_query(query, compression, consistency)
  File "./bin/../lib/cql-internal-only-1.4.0.zip/cql-1.4.0/cql/cassandra/Cassandra.py", line 1793, in send_execute_cql3_query
    self._oprot.trans.flush()
  File "./bin/../lib/thrift-python-internal-only-0.9.1.zip/thrift/transport/TTransport.py", line 292, in flush
    self.__trans.write(buf)
  File "./bin/../lib/thrift-python-internal-only-0.9.1.zip/thrift/transport/TSocket.py", line 128, in write
    plus = self.handle.send(buff)
error: [Errno 32] Broken pipe
4

1 回答 1

1

如果您有一个打开的 cqlsh 会话,如果它连接的 Cassandra 实例已停止甚至刚刚重新启动,它将始终为您提供 Errno 32。您必须重新启动 cqlsh 才能重新建立与服务器的连接。

如果您在没有停止或重新启动 Cassandra 服务器的情况下看到此问题,请提供有关导致此错误的条件的其他详细信息。

于 2013-10-10T17:03:23.660 回答