Slide 72
Slide 72 text
$ cqlsh
cqlsh> CREATE TABLE neovintage_prod.events (
user_id bigint,
account_id bigint,
session_id text,
occurred_at timestamp,
category text,
action text,
label text,
attributes map,
PRIMARY KEY (
(user_id, occurred_at),
account_id,
session_id
)
) WITH CLUSTERING ORDER BY (
account_id desc, session_id acc
);
Ahhhhh… Just
like SQL