Skip to content

Commit fbb5bb6

Browse files
authored
[KV] add note on bulk reads for pricing (#22207)
1 parent 1bffb40 commit fbb5bb6

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed
+18-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
---
22
{}
3-
43
---
54

6-
import { Markdown } from "~/components"
5+
import { Markdown } from "~/components";
76

87
Workers KV is included in both the Free and Paid [Workers plans](/workers/platform/pricing/).
98

10-
| | Free plan<sup>1</sup> | Paid plan |
11-
| --------------- | --------------------- | --------------------------------- |
12-
| Read requests | 100,000 / day | 10 million/month, + $0.50/million |
13-
| Write requests | 1,000 / day | 1 million/month, + $5.00/million |
14-
| Delete requests | 1,000 / day | 1 million/month, + $5.00/million |
15-
| List requests | 1,000 / day | 1 million/month, + $5.00/million |
16-
| Stored data | 1 GB | 1 GB, + $0.50/ GB-month |
9+
| | Free plan<sup>1</sup> | Paid plan |
10+
| ------------- | --------------------- | --------------------------------- |
11+
| Keys read | 100,000 / day | 10 million/month, + $0.50/million |
12+
| Keys written | 1,000 / day | 1 million/month, + $5.00/million |
13+
| Keys deleted | 1,000 / day | 1 million/month, + $5.00/million |
14+
| List requests | 1,000 / day | 1 million/month, + $5.00/million |
15+
| Stored data | 1 GB | 1 GB, + $0.50/ GB-month |
16+
17+
<sup>1</sup> The Workers Free plan includes limited Workers KV usage. All limits
18+
reset daily at 00:00 UTC. If you exceed any one of these limits, further
19+
operations of that type will fail with an error.
20+
21+
:::note
22+
23+
Workers KV pricing for read, write and delete operations is on a per-key basis. Bulk read operations
24+
are billed by the amount of keys read in a bulk read operation.
1725

18-
<sup>1</sup> The Workers Free plan includes limited Workers KV usage. All limits reset daily at 00:00 UTC. If you exceed any one of these limits, further operations of that type will fail with an error.
26+
:::

0 commit comments

Comments
 (0)