gpt4 book ai didi

python - 导入 csv 时 Cassandra 错误 'NoneType' 对象没有属性 'datacenter'

转载 作者:太空宇宙 更新时间:2023-11-03 14:10:07 28 4
gpt4 key购买 nike

我已经设置了一个包含 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 64 位。

我该如何解决这个错误?

$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) 成功了。

纯属偶然,我只是简单地测试了一下,它对我有用。

如果这里有人可以解释这个事实,那就太好了!

关于python - 导入 csv 时 Cassandra 错误 'NoneType' 对象没有属性 'datacenter',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39308666/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com