卡桑德拉 |质量控制 |使用 SELECT QUERY 显示未配置的列族错误

Cassandra | CQL | show unconfigured columnfamily error with SELECT QUERY

我正在尝试创建我的第一个 table 并在 Cassandra 1.2.15 下使用 CQL 3 查询它。我的问题是为什么它显示 unconfigured columnfamily 现有 table 错误。该问题的一些答案是在 table 名称周围添加双引号,但对我不起作用。尽可能显示更多信息。

Connected to dev Test Cluster at localhost:9160.
[cqlsh 3.1.8 | Cassandra 1.2.15 | CQL spec 3.0.0 | Thrift protocol 19.36.2]
Use HELP for help.
cqlsh> describe keyspace cb_theme_authors

CREATE KEYSPACE cb_theme_authors WITH replication = {
  'class': 'SimpleStrategy',
  'replication_factor': '1'
};

USE cb_theme_authors;

CREATE TABLE inlucde_authors (
  authorid text,
  themeid text,
  domain text,
  PRIMARY KEY (authorid, themeid, domain)
) WITH
  bloom_filter_fp_chance=0.010000 AND
  caching='KEYS_ONLY' AND
  comment='' AND
  dclocal_read_repair_chance=0.000000 AND
  gc_grace_seconds=864000 AND
  read_repair_chance=0.100000 AND
  replicate_on_write='true' AND
  populate_io_cache_on_flush='false' AND
  compaction={'class': 'SizeTieredCompactionStrategy'} AND
  compression={'sstable_compression': 'SnappyCompressor'};

cqlsh>
cqlsh>
cqlsh>
cqlsh> use cb_theme_authors;
cqlsh:cb_theme_authors> SELECT * FROM "include_authors";
Bad Request: unconfigured columnfamily include_authors

打字错误?:CF 创建为 inlucde_authors,但您请求 include_authors。仔细阅读:incLUde <-> inCLUde