Skip to content

Commit e90e41c

Browse files
docs: swap to standalone server verbiage (#130)
Previous mapping of helm charts to deployment models: - None -> "cloud" - langgraph-dataplane -> "hybrid" - langgraph-cloud -> "dataplane" <-- THIS WAS THE CONFUSING PART BC DATAPLANE HELM CHART DIDNT MAP TO DATAPLANE DOCS SECTION - langsmith -> "full platform" Now the mapping in our docs (and verbiage around it) is like this: Previous mapping of helm charts to deployment versions: - None -> "cloud" - langgraph-dataplane -> "hybrid" - langgraph-cloud -> "standalone container" <-- ONLY THING THAT CHANGED - langsmith -> "full platform"
1 parent 4c5cab5 commit e90e41c

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

src/docs.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"icon": "file",
4646
"href": "https://docs.langchain.com/llms.txt"
4747
},
48-
"chatgpt",
48+
"chatgpt",
4949
"claude"
5050
]
5151
},
@@ -154,8 +154,8 @@
154154
}
155155
]
156156
},
157-
{
158-
"group": "LangGraph Studio",
157+
{
158+
"group": "LangGraph Studio",
159159
"pages": [
160160
"langgraph-platform/langgraph-studio",
161161
"langgraph-platform/invoke-studio",
@@ -188,7 +188,7 @@
188188
"langgraph-platform/deploy-to-cloud",
189189
"langgraph-platform/deploy-hybrid",
190190
"langgraph-platform/deploy-self-hosted-full-platform",
191-
"langgraph-platform/deploy-data-plane-only",
191+
"langgraph-platform/deploy-standalone-server",
192192
"langgraph-platform/use-remote-graph"
193193
]
194194
},
@@ -211,15 +211,15 @@
211211
"tab": "Manage",
212212
"groups": [
213213

214-
{
215-
"group": "Authentication & access control",
214+
{
215+
"group": "Authentication & access control",
216216
"pages": [
217217
"langgraph-platform/auth",
218218
"langgraph-platform/custom-auth",
219219
"langgraph-platform/set-up-custom-auth",
220220
"langgraph-platform/resource-auth",
221221
"langgraph-platform/add-auth-server",
222-
"langgraph-platform/openapi-security"
222+
"langgraph-platform/openapi-security"
223223
]
224224
},
225225
{
@@ -228,21 +228,21 @@
228228
"langgraph-platform/scalability-and-resilience"
229229
]
230230
},
231-
{
231+
{
232232
"group": "Server customization",
233233
"pages": [
234234
"langgraph-platform/custom-lifespan",
235235
"langgraph-platform/custom-middleware",
236236
"langgraph-platform/custom-routes"
237-
]
237+
]
238238
},
239-
{
240-
"group": "Data management",
239+
{
240+
"group": "Data management",
241241
"pages": [
242242
"langgraph-platform/data-storage-and-privacy",
243243
"langgraph-platform/semantic-search",
244244
"langgraph-platform/configure-ttl"
245-
]
245+
]
246246
},
247247
{
248248
"group": "Tutorials",

src/langgraph-platform/deploy-data-plane-only.mdx renamed to src/langgraph-platform/deploy-standalone-server.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: How to deploy self-hosted data plane only
3-
sidebarTitle: Deploy self-hosted data plane only
2+
title: How to deploy self-hosted standalone server
3+
sidebarTitle: Deploy self-hosted standalone server
44
---
5-
Before deploying, review the [conceptual guide for the Data Plane Only](/langgraph-platform/self-hosted#data-plane-only) deployment option.
5+
Before deploying, review the [conceptual guide for the Standalone Server](/langgraph-platform/self-hosted#standalone-server) deployment option.
66

77
## Prerequisites
88

@@ -13,14 +13,14 @@ Before deploying, review the [conceptual guide for the Data Plane Only](/langgra
1313
<Note>
1414
**Shared Redis Instance**
1515
Multiple self-hosted deployments can share the same Redis instance. For example, for `Deployment A`, `REDIS_URI` can be set to `redis://<hostname_1>:<port>/1` and for `Deployment B`, `REDIS_URI` can be set to `redis://<hostname_1>:<port>/2`.
16-
16+
1717
`1` and `2` are different database numbers within the same instance, but `<hostname_1>` is shared. **The same database number cannot be used for separate deployments**.
1818
</Note>
1919
2. `DATABASE_URI`: Postgres connection details. Postgres will be used to store assistants, threads, runs, persist thread state and long term memory, and to manage the state of the background task queue with 'exactly once' semantics. The value of `DATABASE_URI` must be a valid [Postgres connection URI](https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING-URIS).
2020
<Note>
2121
**Shared Postgres Instance**
2222
Multiple self-hosted deployments can share the same Postgres instance. For example, for `Deployment A`, `DATABASE_URI` can be set to `postgres://<user>:<password>@/<database_name_1>?host=<hostname_1>` and for `Deployment B`, `DATABASE_URI` can be set to `postgres://<user>:<password>@/<database_name_2>?host=<hostname_1>`.
23-
23+
2424
`<database_name_1>` and `database_name_2` are different databases within the same instance, but `<hostname_1>` is shared. **The same database cannot be used for separate deployments**.
2525
</Note>
2626
3. `LANGSMITH_API_KEY`: LangSmith API key.
@@ -49,9 +49,9 @@ docker run \
4949

5050
<Note>
5151
* You need to replace `my-image` with the name of the image you built in the prerequisite steps (from `langgraph build`)
52-
52+
5353
and you should provide appropriate values for `REDIS_URI`, `DATABASE_URI`, and `LANGSMITH_API_KEY`.
54-
54+
5555
* If your application requires additional environment variables, you can pass them in a similar way.
5656
</Note>
5757

src/langgraph-platform/deployment-options.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deployment options
33
sidebarTitle: Deployment options
44
---
55

6-
You can [run LangGraph Platform locally for free](/langgraph-platform/local-server) for testing and development.
6+
You can [run LangGraph Platform locally for free](/langgraph-platform/local-server) for testing and development.
77

88
## Production deployment
99

@@ -64,21 +64,21 @@ The Self-Hosted deployment option allows you to run all components entirely with
6464
You can deploy either:
6565

6666
1. **[Full Platform](/langgraph-platform/self-hosted#full-platform)**: Deploy both control plane and data plane with full UI/API management capabilities
67-
2. **[Data Plane Only](/langgraph-platform/self-hosted#data-plane-only)**: Deploy standalone instances of a LangGraph Server without the control plane UI
67+
2. **[Standalone Server](/langgraph-platform/self-hosted#standalone-server)**: Deploy standalone instances of a LangGraph Server without the control plane UI
6868

6969
With the full platform option, build a Docker image using the [LangGraph CLI](/langgraph-platform/langgraph-cli) and deploy your LangGraph Server from the [control plane UI](/langgraph-platform/control-plane#control-plane-ui) or using the container deployment tooling of your choice.
7070

71-
Supported Compute Platforms: [Kubernetes](https://kubernetes.io/) (for Control Plane), any compute platform (for Data Plane Only)
71+
Supported Compute Platforms: [Kubernetes](https://kubernetes.io/) (for Control Plane), any compute platform (for Standalone Server Only)
7272

7373
For more information, please see:
7474

7575
* [Self-Hosted Conceptual Guide](/langgraph-platform/self-hosted)
7676
* [How to deploy the Self-Hosted Full Platform](/langgraph-platform/deploy-self-hosted-full-platform)
77-
* [How to deploy Self-Hosted Data Plane Only](/langgraph-platform/deploy-data-plane-only)
77+
* [How to deploy the Self-Hosted Standalone Server](/langgraph-platform/deploy-standalone-server)
7878

7979
## Related
8080

8181
For more information, please see:
8282

8383
* [LangGraph Platform plans](/langgraph-platform/plans)
84-
* [LangGraph Platform pricing](https://www.langchain.com/langgraph-platform-pricing)
84+
* [LangGraph Platform pricing](https://www.langchain.com/langgraph-platform-pricing)

src/langgraph-platform/self-hosted.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Self-hosted
44
The Self-Hosted deployment option allows you to run all components entirely within your own cloud environment. You can choose between two deployment models:
55

66
1. **[Full Platform](#full-platform)**: Deploy both control plane and data plane with full UI/API management capabilities
7-
2. **[Data Plane Only](#data-plane-only)**: Deploy standalone instances of a LangGraph Server without the control plane UI
7+
2. **[Data Plane Only](#standalone-server)**: Deploy standalone instances of a LangGraph Server without the control plane UI
88

99
<Info>
1010
**Important**
@@ -42,11 +42,11 @@ The Full Platform deployment model is a fully self-hosted solution where you man
4242
If you would like to enable this on your LangSmith instance, please follow the [Self-Hosted Full Platform deployment guide](/langgraph-platform/deploy-self-hosted-full-platform).
4343
</Tip>
4444

45-
## Data Plane Only
45+
## Standalone Server
4646

4747
### Overview
4848

49-
The Data Plane Only deployment model is the least restrictive option for deployment. There is no [control plane](/langgraph-platform/control-plane). [Data plane](/langgraph-platform/data-plane) infrastructure is managed by you.
49+
The Standalone Server Only deployment model is the least restrictive option for deployment. There is no [control plane](/langgraph-platform/control-plane). A simplified version of the [Data plane](/langgraph-platform/data-plane) infrastructure is managed by you.
5050

5151
| | [Control plane](/langgraph-platform/control-plane) | [Data plane](/langgraph-platform/data-plane) |
5252
|-------------------|-------------------|------------|
@@ -73,5 +73,5 @@ The Data Plane Only deployment model supports deploying data plane infrastructur
7373
The Data Plane Only deployment model supports deploying data plane infrastructure to any Docker-supported compute platform.
7474

7575
<Tip>
76-
To deploy a [LangGraph Server](/langgraph-platform/langgraph-server), follow the how-to guide for [how to deploy Data Plane Only](/langgraph-platform/deploy-data-plane-only).
76+
To deploy a [LangGraph Server](/langgraph-platform/langgraph-server), follow the how-to guide for [how to deploy the Standalone Server](/langgraph-platform/deploy-standalone-server).
7777
</Tip>

0 commit comments

Comments
 (0)