cassandra.invalidriquest:code=2200[无效查询]消息=“键空间“”不存在”

2024-04-28 04:55:30 发布

您现在位置:Python中文网/ 问答频道 /正文

我想用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


Tags: 代码fromhttpfordemodriver空间shell
1条回答
网友
1楼 · 发布于 2024-04-28 04:55:30

创建“demo”键空间的说明位于链接自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页面有一个开发人员演练的链接(单击“开始开发人员演练”)。开发人员演练有一个创建“demo”键空间的步骤:

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));

相关问题 更多 >