From ed3688709d3acaf9c6f1f6580f2271f85cfeb90e Mon Sep 17 00:00:00 2001 From: Jun Lee Date: Fri, 18 Oct 2024 14:56:40 +0100 Subject: [PATCH 1/2] Adding note on the limit of D1 when choosing storage product. --- src/content/docs/workers/platform/storage-options.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/content/docs/workers/platform/storage-options.mdx b/src/content/docs/workers/platform/storage-options.mdx index d08b1654a34b1a5..bd114e2726b2c85 100644 --- a/src/content/docs/workers/platform/storage-options.mdx +++ b/src/content/docs/workers/platform/storage-options.mdx @@ -136,6 +136,10 @@ To get started with D1: - Follow the [Get started guide](/d1/get-started/) to provision your first D1 database. - Review the [D1 client API](/d1/build-with-d1/d1-client-api/). +:::note +If your working data size exceeds 10 GB (the maximum size for a D1 database), consider splitting the database to multiple, smaller D1 databases. +::: + ## Queues Cloudflare Queues allows developers to send and receive messages with guaranteed delivery. It integrates with [Cloudflare Workers](/workers) and offers at-least once delivery, message batching, and does not charge for egress bandwidth. From fba522b6b0eb98cd1c34663f142ea1abbc33226b Mon Sep 17 00:00:00 2001 From: Jun Lee Date: Fri, 18 Oct 2024 15:34:17 +0100 Subject: [PATCH 2/2] Update src/content/docs/workers/platform/storage-options.mdx Co-authored-by: db-cloudflare <125887610+db-cloudflare@users.noreply.github.com> --- src/content/docs/workers/platform/storage-options.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/platform/storage-options.mdx b/src/content/docs/workers/platform/storage-options.mdx index bd114e2726b2c85..ed1c046de1c260a 100644 --- a/src/content/docs/workers/platform/storage-options.mdx +++ b/src/content/docs/workers/platform/storage-options.mdx @@ -137,7 +137,7 @@ To get started with D1: - Review the [D1 client API](/d1/build-with-d1/d1-client-api/). :::note -If your working data size exceeds 10 GB (the maximum size for a D1 database), consider splitting the database to multiple, smaller D1 databases. +If your working data size exceeds 10 GB (the maximum size for a D1 database), consider splitting the database into multiple, smaller D1 databases. ::: ## Queues