An open API service indexing awesome lists of open source software.

https://github.com/samdvr/cassandra-timeseries


https://github.com/samdvr/cassandra-timeseries

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Cassandra Timeseries Data Modeling

## Table Definition

```sql
CREATE TABLE Events (
user_id uuid,
timestamp timestamp,
event_id uuid,
body text,
PRIMARY KEY (user_id, timestamp)
) WITH CLUSTERING ORDER BY (timestamp DESC);
```

This project uses Http4s and Cassandra driver.