Skip to content

Commit 66b4170

Browse files
committed
Patching timestamp bc we need sort key granularity
1 parent 1cacb03 commit 66b4170

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/scenarios/Bank Payments/_index.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is primarily an OLTP workload with daily batch processes. Items in the tabl
1313
#### Workload dimensions
1414

1515
- Accounts can have multiple payments scheduled for any day in the future.
16-
- Payments have the following data fields: *AccountID*, *ScheduledDate*, *Status* (`SCHEDULED`, `PENDING` or `PROCESSED`), *DataBlob* (total item size is <= 8 KB)
16+
- Payments have the following data fields: *AccountID*, *ScheduledTime*, *Status* (`SCHEDULED`, `PENDING` or `PROCESSED`), *DataBlob* (total item size is <= 8 KB)
1717
- One million automated scheduled payments are added every day at 1:00 AM *for that day*, which need to complete in 30 minutes.
1818
- One million payments are added every day with the `SCHEDULED` state, mostly in the hours of 6 AM to 6 PM.
1919
- During the day, a batch job runs regularly to query for today's `SCHEDULED` payments. This service sends the `SCHEDULED` items to the transaction service. Upon sending the items to the transaction service, the payment status is changed to `PENDING`.

content/scenarios/Bank Payments/references.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The access patterns in the scenario are outlined as:
1616

1717
Identify possible partitions keys to fulfill the primary access pattern:
1818

19-
- What item attribute (*AccountID*, *ScheduledDate*, *Status*, *DataBlob*) scales with access patterns?
19+
- What item attribute (*AccountID*, *ScheduledTime*, *Status*, *DataBlob*) scales with access patterns?
2020
- What is a natural organization for the related payment items (so as to return collected items relative to the access patterns above)?
2121
- Consider the dimension of access: both reads and writes.
2222

0 commit comments

Comments
 (0)