Skip to content
This repository was archived by the owner on May 31, 2020. It is now read-only.

Latest commit

 

History

History

tsdb-cassandra

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Time series database based on Cassandra

Usage

  • docker run --name tsdb-cassandra -p 9042:9042 -d cassandra:3.9

    • docker stop tsdb-cassandra
    • docker start tsdb-cassandra
  • docker exec -it tsdb-cassandra bash

  • docker run --name tsdb-scylla -p 9042:9042 -d scylladb/scylla:1.4.1

Key points

Typically, a cluster has one keyspace per application composed of many different tables.

TODO

NOTE

  • need to use -p to map port to host, expose is not enough
  • failed to connect to 127.0.0.1:9042 due to error: Keyspace 'demo' does not exist

Before you execute the program, Launch cqlsh and execute: create keyspace demo with replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 }; (this is not include in the datastax documentation ... )

Ref

either the column values contain row keys pointing to a separate column family which contains the actual data for events, or the complete set of data for each event is stored in the timeline itself

All the primary key partition stuff

Wide row

Time sereis data modeling with apache cassandra