在没有提供集群列的情况下,每个分区由一行组成

Each partition consists of a single row, in the case where no clustering columns are provided

我正在查看 cassandra 的文档,尤其是 Cassandra 权威指南。我遇到以下语句

Note that in the case where no clustering columns are provided, each partition consists of a single row

是不是每个分区都将包含 "Group of rows" 而不管提供的集群列(排序)或不提供集群列(无排序) - 但分区仍然是 "Group of rows" 。请添加您的想法

添加答案 -

当没有聚簇键时,一个分区只能容纳一行。这是因为每个唯一主键只有一行。主键是分区键和集群键的组合。

因此,如果只有一个分区键,则每个分区只有一行。使用相同分区键的任何其他插入都将覆盖以前的值。

因为主键仅构成分区键