Cassandra Storage Engine Issues

CassandraSE is no longer actively being developed and has been removed in MariaDB 10.6. See MDEV-23024.

This page lists difficulties and peculiarities of Cassandra Storage Engine. I'm not putting them into bug tracker because it is not clear whether these properties should be considered bugs.

No way to get E(#rows in column family)

There seems to be no way to get even a rough estimate of how many different keys are present in a column family. I'm using an arbitrary value of 1000 now, which causes

  • EXPLAIN will always show rows=1000 for full table scans. In the future, this may cause poor query plans.
  • DELETE FROM table always prints "1000 rows affected", with no regards how many records were actually there in the table.
MariaDB [j1]> delete from t1;
Query OK, 1000 rows affected (0.14 sec)

We could use the new engine-independent-table-statistics feature to get some data statistics.

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.