gpt4 book ai didi

python - cassandra.InvalidRequest : code=2200 [Invalid query] message ="Keyspace ' ' does not exist"

转载 作者:太空狗 更新时间:2023-10-30 03:00:24 26 4
gpt4 key购买 nike

我正在尝试使用 python driver for cassandra但是当我在 python shell 中运行这三行时

from cassandra.cluster import Cluster
cluster = Cluster()
session = cluster.connect('demo')

我收到这个错误

cassandra.InvalidRequest: code=2200 [Invalid query] message="Keyspace 'demo' does not exist"

pip freeze 说 cassandra-driver==2.5.0

我检查了cqlsh

Connected to Test Cluster at 127.0.0.1:9042.
[cqlsh 5.0.1 | Cassandra 2.1.4 | CQL spec 3.2.0 | Native protocol v3]
Use HELP for help.
cqlsh> describe keyspaces

system_traces system

cqlsh>

没有名为“demo”的键空间,但我只是在学习这两个教程,他们没有说任何关于预创建键空间的内容 http://planetcassandra.org/getting-started-with-cassandra-and-python/ http://datastax.github.io/python-driver/getting_started.html

最佳答案

创建“演示”键空间的说明位于从 http://planetcassandra.org/getting-started-with-cassandra-and-python/ 链接的页面上:

To follow this tutorial, you should already have a running Cassandra instance, and have gone through the 10 minute walkthrough here: http://www.PlanetCassandra.org/try-cassandra/

try-cassandra 页面有开发人员演练的链接(单击“开始开发人员演练”)。开发人员演练有一个创建“演示”键空间的步骤:

The keyspace can include operational elements, such as replication factor and data center awareness. Let’s create a keyspace called “demo”. We will include replication strategy class and factor; details that will be covered in a future tutorial.

To create the keyspace “demo”, at the CQL shell prompt, type:

cqlsh> CREATE KEYSPACE demo WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };

创建表

use demo;
CREATE TABLE users (
firstname text,
lastname text,
age int,
email text,
city text,
PRIMARY KEY (lastname));

关于python - cassandra.InvalidRequest : code=2200 [Invalid query] message ="Keyspace ' ' does not exist",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29496724/

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