Skip to content

Commit 2cc02dd

Browse files
committed
Correct autoscale and manual scale formulas
1 parent 50782b3 commit 2cc02dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/cosmos-db/autoscale-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ sections:
9898
9999
For a container, use the following formula to estimate the initial autoscale maximum RU/s:
100100
101-
`MAX(1,000, current manual provisioned RU/s, maximum RU/s ever provisioned / 10, storage in GB × 100)` rounded to the nearest 1,000 RU/s.
101+
`MAX(1,000, current manual provisioned RU/s, maximum RU/s ever provisioned / 10, storage in GB × 10)` rounded to the nearest 1,000 RU/s.
102102
103103
The actual initial autoscale maximum RU/s might vary depending on your account configuration.
104104

articles/cosmos-db/scaling-provisioned-throughput-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ In general, if you have a starting number of physical partitions `P`, and want t
113113
Increase your RU/s to: `10,000 * P * (2 ^ (ROUNDUP(LOG_2 (S/(10,000 * P))))`. This gives the closest RU/s to the desired value that will ensure all partitions are split evenly.
114114

115115
> [!NOTE]
116-
> When you increase the RU/s of a database or container, this can impact the minimum RU/s you can lower to in the future. Typically, the minimum RU/s is equal to MAX(400 RU/s, Current storage in GB * 10 RU/s, Highest RU/s ever provisioned / 100). For example, if the highest RU/s you've ever scaled to is 100,000 RU/s, the lowest RU/s you can set in the future is 1000 RU/s. Learn more about [minimum RU/s](concepts-limits.md#minimum-throughput-limits).
116+
> When you increase the RU/s of a database or container, this can impact the minimum RU/s you can lower to in the future. Typically, the minimum RU/s is equal to MAX(400 RU/s, Current storage in GB * 1 RU/s, Highest RU/s ever provisioned / 100). For example, if the highest RU/s you've ever scaled to is 100,000 RU/s, the lowest RU/s you can set in the future is 1000 RU/s. Learn more about [minimum RU/s](concepts-limits.md#minimum-throughput-limits).
117117
118118
#### Step 2: Lower your RU/s to the desired RU/s
119119

0 commit comments

Comments
 (0)