From ff3bc2f9821d9dffe5d1a8fcf6eb1758f3715da8 Mon Sep 17 00:00:00 2001 From: Andrew Nguonly Date: Wed, 11 Dec 2024 13:19:19 -0800 Subject: [PATCH] docs: Add details about Cloud SaaS deployment time (#2722) --- docs/docs/concepts/langgraph_cloud.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/docs/concepts/langgraph_cloud.md b/docs/docs/concepts/langgraph_cloud.md index 6cd6f4b8b..05a6218f1 100644 --- a/docs/docs/concepts/langgraph_cloud.md +++ b/docs/docs/concepts/langgraph_cloud.md @@ -43,6 +43,12 @@ See the [how-to guide](../cloud/deployment/cloud.md#create-new-revision) for cre Infrastructure for [deployments](#deployment) and [revisions](#revision) are provisioned and deployed asynchronously. They are not deployed immediately after submission. Currently, deployment can take up to several minutes. +- When a new deployment is created, a new database is created for the deployment. Database creation is a one-time step. This step contributes to a longer deployment time for the initial revision of the deployment. +- When a subsequent revision is created for a deployment, there is no database creation step. The deployment time for a subsequent revision is significantly faster compared to the deployment time of the initial revision. +- The deployment process for each revision contains a build step, which can take up to a few minutes. + +!!! info "Database creation for `Development` type deployments takes longer than database creation for `Production` type deployments." + ## Architecture !!! warning "Subject to Change" @@ -52,7 +58,6 @@ A high-level diagram of a Cloud SaaS deployment. ![diagram](img/langgraph_cloud_architecture.png) - ## Related - [Deployment Options](./deployment_options.md)