添加了 "ALTER TABLE" 的列在我发出请求时没有出现
Column added with "ALTER TABLE" doesn't appear when I make a request
我有一个 table 包含这些列:
cassandra@cqlsh:test> DESCRIBE Table "ItemSource";
CREATE TABLE connect."ItemSource" (
"Identifier" text,
"SourceID" uuid,
"ItemID" uuid,
"Priority" int,
"AdditionalParams" map<text, text>,
"Binding" map<text, text>,
"CountryRestriction" list<text>,
"ItemSourceID" uuid,
"Marker" text,
"Scraped" int,
"SearchField" text,
PRIMARY KEY (("Identifier", "SourceID"), "ItemID", "Priority")
) WITH CLUSTERING ORDER BY ("ItemID" ASC, "Priority" ASC)
AND bloom_filter_fp_chance = 0.01
AND caching = '{"keys":"ALL", "rows_per_partition":"NONE"}'
AND comment = ''
AND compaction = {'min_threshold': '4', 'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32'}
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';
我发起了以下列添加一个名为 Limit 类型的列:
ALTER TABLE "ItemSource" ADD "Limit" int;
table 已经包含元素,我更新了所有元素,因此它们的限制为 0,如果我使用 cqlsh 执行以下命令,"Limit" 列出现并且值也存在.
但是如果我使用 gocql(cassandra 的 Go 驱动程序)执行完全相同的请求,我不会收到 Limit 列,但会收到其他列,这是发出的请求:
SELECT * FROM "ItemSource" WHERE "Identifier" = ? AND "ItemID" = ? AND "SourceID" = ? AND "Priority" = ? LIMIT ? ALLOW FILTERING
我不知道发生了什么,我尝试将数据复制到 csv 文件,然后截断 table 然后重新导入数据,仍然得到相同的结果...
会不会是缓存问题?如果是,我该如何清空它。不然还能是什么?
我发现了一个与我的问题相对相同的问题,其中的答案解释说这是一个即将修复的错误。实际上,它已经修复,我们只需要等待下一次更新(2.1.3
)。
这是 cassandra 问题的 link:CASSANDRA-7910
编辑:我编辑此消息是因为 Cassandra 2.1.3 已经发布几个月了(实际上,它是在我发布此答案的当天发布的,太棒了!:)) 并且修复有效。
给你!
我有一个 table 包含这些列:
cassandra@cqlsh:test> DESCRIBE Table "ItemSource";
CREATE TABLE connect."ItemSource" (
"Identifier" text,
"SourceID" uuid,
"ItemID" uuid,
"Priority" int,
"AdditionalParams" map<text, text>,
"Binding" map<text, text>,
"CountryRestriction" list<text>,
"ItemSourceID" uuid,
"Marker" text,
"Scraped" int,
"SearchField" text,
PRIMARY KEY (("Identifier", "SourceID"), "ItemID", "Priority")
) WITH CLUSTERING ORDER BY ("ItemID" ASC, "Priority" ASC)
AND bloom_filter_fp_chance = 0.01
AND caching = '{"keys":"ALL", "rows_per_partition":"NONE"}'
AND comment = ''
AND compaction = {'min_threshold': '4', 'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32'}
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';
我发起了以下列添加一个名为 Limit 类型的列:
ALTER TABLE "ItemSource" ADD "Limit" int;
table 已经包含元素,我更新了所有元素,因此它们的限制为 0,如果我使用 cqlsh 执行以下命令,"Limit" 列出现并且值也存在.
但是如果我使用 gocql(cassandra 的 Go 驱动程序)执行完全相同的请求,我不会收到 Limit 列,但会收到其他列,这是发出的请求:
SELECT * FROM "ItemSource" WHERE "Identifier" = ? AND "ItemID" = ? AND "SourceID" = ? AND "Priority" = ? LIMIT ? ALLOW FILTERING
我不知道发生了什么,我尝试将数据复制到 csv 文件,然后截断 table 然后重新导入数据,仍然得到相同的结果...
会不会是缓存问题?如果是,我该如何清空它。不然还能是什么?
我发现了一个与我的问题相对相同的问题,其中的答案解释说这是一个即将修复的错误。实际上,它已经修复,我们只需要等待下一次更新(2.1.3
)。
这是 cassandra 问题的 link:CASSANDRA-7910
编辑:我编辑此消息是因为 Cassandra 2.1.3 已经发布几个月了(实际上,它是在我发布此答案的当天发布的,太棒了!:)) 并且修复有效。
给你!