gpt4 book ai didi

python - 如何从 Python 脚本执行 Cassandra CLI 命令?

转载 作者:太空宇宙 更新时间:2023-11-04 06:34:23 25 4
gpt4 key购买 nike

我有一个 python 脚本,我想用它在服务器上进行远程调用、连接到 Cassandra CLI 并执行命令以创建键空间。我所做的其中一项尝试就是达到这种效果:

connect="cassandra-cli -host localhost -port 1960;"
create_keyspace="CREATE KEYSPACE someguy;"
exit="exit;"

final = Popen("{}; {}; {}".format(connect, create_keyspace, exit), shell=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
stdout, nothing = final.communicate()

查看各种解决方案,我没有找到我需要的东西。例如,上面的代码抛出一个“/bin/sh: 1: CREATE: not found”,我认为这意味着它没有在 CLI 命令行上执行 CREATE 语句。

任何/所有帮助将不胜感激!谢谢!

最佳答案

试试这个。我的机器上没有安装 cassandra-cli,所以我无法自己测试。

from subprocess import check_output
from tempfile import NamedTemporaryFile
CASSANDRA_CMD = 'cassandra-cli -host localhost -port 1960 -f '

def cassandra(commands):
with NamedTemporaryFile() as f:
f.write(';\n'.join(commands))
f.flush()
return check_output(CASSANDRA_CMD + f.name, shell=True)

cassandra(['CREATE KEYSPACE someguy', 'exit'])

正如您在下面的评论中提到的 pycassa a Python client for Cassandra不能使用,因为它似乎不支持创建语句。

关于python - 如何从 Python 脚本执行 Cassandra CLI 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13347534/

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