哪个 CQL 版本对应哪个 Cassandra 版本?
Which CQL version corresponds to which Cassandra version?
CQL 文档是根据 CQL 版本而不是 Cassandra 产品版本组织的。显然,我想阅读与我正在使用的 Cassandra 版本对应的 CQL 文档,但我找不到关于哪个 CQL 版本对应哪个 Cassandra 版本的综合信息:
- CQL 3.1 documentation 的标题为 "CQL for Cassandra 2.0 & 2.1",但较新的 CQL 文档不再提及 Cassandra 版本
- Product compatibility 页面仅映射 OpsCenter、Cassandra 和 DataStax Enterprise 的版本
是否有列出版本映射的简单页面?
CQL Version | Cassandra Version
3.3 | 2.2 and above
3.1 | 2.o & 2.1
3.0 | 1.2 to 1.x
感谢您的反馈。根据您的反馈,DataStax 文档团队在所有文档的产品兼容性页面中添加了一个新部分:
CQL versions used by DataStax Enterprise and Cassandra
CQL version Cassandra DataStax Enterprise
3.3 2.2, 3.0,3.x 5.0
3.1 2.0, 2.1 4.0, 4.5, 4.6, 4.7, 4.8
3.0 1.2 3.1, 3.2
欢迎在@DataStaxDocs 上发布更多反馈
如果您已经有一个 运行ning Cassandra 数据库,您可以 运行
SELECT cql_version, release_version FROM system.local;
获取您的 Cassandra 版本和相应的 CQL 版本。
CQL 文档是根据 CQL 版本而不是 Cassandra 产品版本组织的。显然,我想阅读与我正在使用的 Cassandra 版本对应的 CQL 文档,但我找不到关于哪个 CQL 版本对应哪个 Cassandra 版本的综合信息:
- CQL 3.1 documentation 的标题为 "CQL for Cassandra 2.0 & 2.1",但较新的 CQL 文档不再提及 Cassandra 版本
- Product compatibility 页面仅映射 OpsCenter、Cassandra 和 DataStax Enterprise 的版本
是否有列出版本映射的简单页面?
CQL Version | Cassandra Version
3.3 | 2.2 and above
3.1 | 2.o & 2.1
3.0 | 1.2 to 1.x
感谢您的反馈。根据您的反馈,DataStax 文档团队在所有文档的产品兼容性页面中添加了一个新部分:
CQL versions used by DataStax Enterprise and Cassandra
CQL version Cassandra DataStax Enterprise
3.3 2.2, 3.0,3.x 5.0
3.1 2.0, 2.1 4.0, 4.5, 4.6, 4.7, 4.8
3.0 1.2 3.1, 3.2
欢迎在@DataStaxDocs 上发布更多反馈
如果您已经有一个 运行ning Cassandra 数据库,您可以 运行
SELECT cql_version, release_version FROM system.local;
获取您的 Cassandra 版本和相应的 CQL 版本。