python – Cassandra错误’NoneType’对象在导入csv时没有属性’datacenter’

我已经建立了一个包含3个节点的cassandra集群.

我试图使用复制命令进行简单的导出/导入,但它失败并出现以下错误:

cqlsh:walmart> select * from test;

 store | date       | isholiday | dept
-------+------------+-----------+------
     1 | 22/04/1993 |     False |    1


cqlsh> use walmart;
cqlsh:walmart> copy test to 'test.csv';
'NoneType' object has no attribute 'datacenter'

我研究了错误,每个相关链接似乎都指出了python问题.

我还安装了python驱动程序pip cassandra-driver.手动插入数据有效,但不能通过导出/导入.

cassandra@cassandra-srv01:~$python -c 'import cassandra; print cassandra.__version__'
3.6.0

Ubuntu 16.04 64bit.

我该如何解决这个错误?

$CASSANDRA_HOME / logs中的日志没有关于错误的任何条目.

追溯:

Traceback (most recent call last):
  File "/usr/local/Cellar/cassandra/3.7/libexec/bin/cqlsh.py", line 1152, in onecmd
    self.handle_statement(st, statementtext)
  File "/usr/local/Cellar/cassandra/3.7/libexec/bin/cqlsh.py", line 1189, in handle_statement
    return custom_handler(parsed)
  File "/usr/local/Cellar/cassandra/3.7/libexec/bin/cqlsh.py", line 1907, in do_copy
    task = ImportTask(self, ks, table, columns, fname, opts, DEFAULT_PROTOCOL_VERSION, CONFIG_FILE)
  File "/usr/local/Cellar/cassandra/3.7/libexec/bin/../pylib/cqlshlib/copyutil.py", line 1061, in __init__
    CopyTask.__init__(self, shell, ks, table, columns, fname, opts, protocol_version, config_file, 'from')
  File "/usr/local/Cellar/cassandra/3.7/libexec/bin/../pylib/cqlshlib/copyutil.py", line 207, in __init__
    self.local_dc = shell.conn.metadata.get_host(shell.hostname).datacenter
AttributeError: 'NoneType' object has no attribute 'datacenter

解决方法:

它不是那么好,但我会尽力为这个问题做出贡献.我是cassandra的新手,在尝试通过复制功能将数据导入cassandra表时遇到了完全相同的问题.我通过安装在虚拟机上的cqlsh连接到安装了cassandra的服务器.所以我必须在运行cqlsh命令时指定服务器IP地址和端口:#cqlsh ip_address port
我连接的服务器名称如下:#cqlsh myserver.example.com 9040我连接了,复制功能不起作用.

但是连接服务器的数字IP地址(例如:

cqlsh 127.0.0.1 9040)它有效.

这是纯粹的机会,我只是测试过,它对我有用.

当有人在这里解释这个事实时会很棒!

上一篇:为什么append()总是在Python中返回None?


下一篇:python 使用xlwings读取数据和写入数据