Skip to content

Commit 7471852

Browse files
thomas-tacquetLaure-di
authored andcommitted
fix(serverless): stateless concept (scaleway#4183)
1 parent 8486593 commit 7471852

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

serverless/containers/concepts.mdx

+5-11
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,13 @@ Here is how it works:
200200

201201
This process ensures a seamless update experience, minimizing user disruption during deployments. If needed, you can also manage traffic splitting between versions during the update process, allowing you to test new versions with a subset of traffic before fully migrating to it
202202

203-
## Stateless application
203+
## Stateless
204204

205-
A stateless application is a computer program that does not save client data between sessions. Data generated in one session is not saved for use in the next session with that client.
205+
Refers to a system or application that does not maintain any persistent state between executions. In a stateless environment, each request or operation is independent, and no information is retained from previous interactions.
206206

207-
To store data persistently, use products like [Managed Databases]/managed-databases/) or [Object Storage](/storage/object/).
207+
This means that each request is treated as a new and isolated event, and there is no need for the system to remember previous states or data once a task is completed. Statelessness is commonly used in serverless architectures where each function execution is independent of others.
208+
209+
To store data you can use [Scaleway Object Storage](/storage/object/), [Scaleway Managed Databases](/managed-databases/postgresql-and-mysql/), and [Scaleway Serverless Databases](/serverless/sql-databases/).
208210

209211
## Status
210212

@@ -213,14 +215,6 @@ A Serverless Container can have the following statuses:
213215
* **Pending**: your resource is under deployment.
214216
* **Error**: something went wrong during the deployment process. [Check our troubleshooting documentation](/serverless/containers/troubleshooting/cannot-deploy-image) to solve the issue.
215217

216-
## Stateless
217-
218-
Refers to a system or application that does not maintain any persistent state between executions. In a stateless environment, each request or operation is independent, and no information is retained from previous interactions.
219-
220-
This means that each request is treated as a new and isolated event, and there is no need for the system to remember previous states or data once a task is completed. Statelessness is commonly used in serverless architectures where each function execution is independent of others.
221-
222-
To store data you can use [Scaleway Object Storage](/storage/object/), [Scaleway Managed Databases](/managed-databases/postgresql-and-mysql/), and [Scaleway Serverless Databases](/serverless/sql-databases/).
223-
224218
## Terraform
225219

226220
Terraform is a tool for managing infrastructure using code. [Read the Terraform documentation for Serverless Containers](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs/resources/container).

0 commit comments

Comments
 (0)