File tree 1 file changed +3
-3
lines changed
docs/get-started/data-modeling
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ range queries. For example:
38
38
PRIMARY KEY ((user_id, activity_date), log_time)
39
39
);
40
40
41
- In this table, here the partition is a combination of the ``user_id` ``
42
- and ``activity_date` `` , using a technique called "bucketing". This ensures that there
41
+ In this table, here the partition is a combination of the ``user_id ``
42
+ and ``activity_date ``, using a technique called "bucketing". This ensures that there
43
43
is no unbounded growth within a partition, bucketed to a date. In addition, logs are
44
- ordered by ``log_time` `` within each ``(user_id, activity_date) `` partition, making it
44
+ ordered by ``log_time `` within each ``(user_id, activity_date) `` partition, making it
45
45
efficient to query logs over a time range for a specific user.
46
46
47
47
Your query design should also be optimized for efficient and effective queries
You can’t perform that action at this time.
0 commit comments