Why many refer to Cassandra as a Column oriented database?

后端 未结 7 1018
终归单人心
终归单人心 2020-12-07 10:10

Reading several papers and documents on internet, I found many contradictory information about the Cassandra data model. There are many which identify it as a column oriente

7条回答
  •  一生所求
    2020-12-07 10:44

    Cassandra has a concept of column families(table), which originally comes from BigTable. Though, it is really misleading to call them column-oriented as you mentioned. Within each column family, they store all columns from a row together, along with a row key, and they do not use column compression. Thus, the Bigtable model is still mostly row-oriented.

提交回复
热议问题