无法完成对任何主机cassandra的操作

时间:2016-11-10 13:50:40

标签: python cassandra datastax

我已尝试过先前的解决方案herehere。我正在使用datasax的cassandra-driver。我的cassandra版本是2.2.8。我已经在其中创建了密钥空间/* for row selection mode */ .table-row-cell:selected .table-cell-warn, .table-row-cell:selected .table-cell-error, /* for cell selection mode */ .table-cell-warn:selected, .table-cell-error:selected { -fx-background-color: #0096C9; -fx-accent: #0096C9; -fx-focus-color: #039ED3; } CT_KEYSPACE。我通过CT_TABLE提示在CT_TABLE中插入了值。以下是用于检索行的python代码

cqlsh

以下是DESCRIBE CT_KEYSPACE的输出:

from cassandra.cluster import Cluster
cluster = Cluster()
session = cluster.connect('CT_KEYSPACE')
result = session.execute("select * from CT_TABLE")
print result.attribute, result.value

以下是我得到的错误:

cqlsh> describe ct_keyspace

CREATE KEYSPACE ct_keyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'}  AND durable_writes = true;

CREATE TABLE ct_keyspace.ct_table (
    attribute text PRIMARY KEY,
    value int
) WITH bloom_filter_fp_chance = 0.01
    AND caching = '{"keys":"ALL", "rows_per_partition":"NONE"}'
    AND comment = ''
    AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy'}
    AND compression = {'sstable_compression': 'org.apache.cassandra.io.compress.LZ4Compressor'}
    AND dclocal_read_repair_chance = 0.1
    AND default_time_to_live = 0
    AND gc_grace_seconds = 864000
    AND max_index_interval = 2048
    AND memtable_flush_period_in_ms = 0
    AND min_index_interval = 128
    AND read_repair_chance = 0.0
    AND speculative_retry = '99.0PERCENTILE';

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

这种情况正在发生,因为您在连接中提供了错误的键空间名称。使用"ct_keyspace"代替"CT_KEYSPACE"。您可能还记得, CQL (例如您的select语句)中不带引号的标识符不区分大小写。但是,在参数传递的上下文中(如在Cluster.connect(<keyspace>)中),文字不区分大小写。

如果启用日志记录,您会看到驱动程序无法在连接上设置该键空间。我在这种情况下创建了一张改进错误处理的票证:
https://datastax-oss.atlassian.net/browse/PYTHON-665

答案 1 :(得分:1)

我遇到了同样的错误,经过一番检查,我了解到我的磁盘驱动器已用完空间,并且服务器操作系统无法为Cassandra分配任何磁盘空间。