Cassandra storage engine

You are viewing an old version of this article. View the current version here.

This page is a documentation for HBase storage engine which is a work in progress.

Cassandra tables

MariaDB's table represents a column family in Cassandra. The table must follow this pattern:

create table tbl   -- name can be chosen at-will
(
  rowkey  char(N),  -- this field must be named 'rowkey'
  data    varchar,  -- columns go here
) engine=cassandra thrift_host='192.168.1.0' keyspace='cassandra_key_space';

A table in MariaDB represents a view of Cassandra's data:

  • target column family

See also hbase-storage-engine

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.