Cassandra Subscription Request Schema
Moving this from permissions into its own MR
0/2 threads resolved
changed milestone to %Permission #review
added Sprint::10/09 - Pink Panther Squad::Green scoped labels
approved this merge request
added 18 commits
- 81e20456...4300e1a6 - 17 commits from branch
master
- 489b022b - Merge remote-tracking branch 'origin/master' into chore/cassandra-subscription-request-schema
- 81e20456...4300e1a6 - 17 commits from branch
added 3 commits
- 489b022b...4ea10248 - 2 commits from branch
master
- 56624457 - Merge remote-tracking branch 'origin/master' into chore/cassandra-subscription-request-schema
- 489b022b...4ea10248 - 2 commits from branch
approved this merge request
- Last updated by Emiliano Balbuena
1510 1510 WHERE user_guid IS NOT NULL AND domain IS NOT NULL 1511 1511 PRIMARY KEY (domain, user_guid) 1512 1512 WITH CLUSTERING ORDER BY (user_guid ASC); 1513 1514 CREATE TABLE minds.subscription_requests ( 1515 publisher_guid bigint, 1516 subscriber_guid bigint, 1517 timestamp timestamp, 1518 declined boolean, 1519 PRIMARY KEY (publisher_guid, subscriber_guid) 1520 ); 1521 1522 CREATE TABLE notification_batches ( - Developer
No keyspace?
- Developer
this
unapproved this merge request
approved this merge request
unapproved this merge request
1512 1512 WITH CLUSTERING ORDER BY (user_guid ASC); 1513 1514 CREATE TABLE minds.subscription_requests ( 1515 publisher_guid bigint, 1516 subscriber_guid bigint, 1517 timestamp timestamp, 1518 declined boolean, 1519 PRIMARY KEY (publisher_guid, subscriber_guid) 1520 ); 1521 1522 CREATE TABLE notification_batches ( 1523 user_guid varint, 1524 batch_id text, 1525 primary key (user_guid, batch_id) 1526 ) 1527 WITH CACHING = {'keys': 'ALL', 'rows_per_partition': 'NONE'} - Developer
Try to avoid engine statements (caching, compaction, etc)