You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: serverless/containers/concepts.mdx
+5-11
Original file line number
Diff line number
Diff line change
@@ -200,11 +200,13 @@ Here is how it works:
200
200
201
201
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
202
202
203
-
## Stateless application
203
+
## Stateless
204
204
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.
206
206
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/).
208
210
209
211
## Status
210
212
@@ -213,14 +215,6 @@ A Serverless Container can have the following statuses:
213
215
***Pending**: your resource is under deployment.
214
216
***Error**: something went wrong during the deployment process. [Check our troubleshooting documentation](/serverless/containers/troubleshooting/cannot-deploy-image) to solve the issue.
215
217
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
-
224
218
## Terraform
225
219
226
220
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