-
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
Typically, a cluster has one keyspace per application composed of many different tables.
- setup cassandra using docker
- query cassandra
- create time series tables
- query https://github.com/scylladb/scylla (maybe hard to setup?)
- 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 ... )
-
https://academy.datastax.com/resources/getting-started-apache-cassandra-and-go
-
http://www.datastax.com/dev/blog/advanced-time-series-with-cassandra
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