From 4b55bea797d2c7cbf54f72b267c77dbf4c0f8b13 Mon Sep 17 00:00:00 2001 From: colton Date: Thu, 19 Dec 2024 15:50:27 -0500 Subject: [PATCH] [docs-beta] migrate - rate limits doc (#26502) ## Summary & Motivation Broken links converted to `/todo`: ``` - Broken link on source page path = /dagster-plus/deployment/management/rate-limits: -> linking to /concepts/logging#structured-event-logs -> linking to /concepts/logging#raw-compute-logs ``` ## How I Tested These Changes ## Changelog NOCHANGELOG --- .../dagster-plus/deployment/management/rate-limits.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/docs-beta/docs/dagster-plus/deployment/management/rate-limits.md b/docs/docs-beta/docs/dagster-plus/deployment/management/rate-limits.md index b4364e74ff276..7c85eb8fdaa11 100644 --- a/docs/docs-beta/docs/dagster-plus/deployment/management/rate-limits.md +++ b/docs/docs-beta/docs/dagster-plus/deployment/management/rate-limits.md @@ -1,6 +1,13 @@ --- title: Dagster+ rate limits -unlisted: true --- -{/* TODO move from https://docs.dagster.io/dagster-plus/references/limits */} \ No newline at end of file +Dagster+ enforces several rate limits to smoothly distribute the load. Deployments are limited to: + +- 40,000 user log events (e.g, `context.log.info`) per minute. This limit only applies to custom logs; system events like the ones that drive orchestration or materialize assets are not subject to this limit. +- 35MB of events per minute. This limit applies to both custom events and system events. + +Rate-limited requests return a "429 - Too Many Requests" response. Dagster+ agents automatically retry these requests. + +{/* Switching from [Structured event logs](/concepts/logging#structured-event-logs) to [Raw compute logs](/concepts/logging#raw-compute-logs) or reducing your custom log volume can help you stay within these limits. */} +Switching from [Structured event logs](/todo) to [Raw compute logs](/todo) or reducing your custom log volume can help you stay within these limits.