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: pages/serverless-containers/concepts.mdx
+1-19Lines changed: 1 addition & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -206,32 +206,14 @@ It automatically handles infrastructure management, scaling, and load balancing,
206
206
207
207
## Serverless Functions
208
208
209
-
Serverless Functions are serverless, fully managed compute services that allow you to run small, stateless code snippets or functions in response to HTTP requests or events.
209
+
Serverless Functions are fully managed compute services that allow you to run small, stateless code snippets or functions in response to HTTP requests or events.
210
210
211
211
These functions automatically scale based on demand and are designed to be lightweight, event-driven, and easily deployable, eliminating the need to worry about infrastructure management. Functions is built on top of Serverless Containers, meaning you can run your functions packaged in containers and have them scale efficiently.
212
212
213
213
## Serverless Jobs
214
214
215
215
Serverless Jobs are similar to Serverless Containers but are better suited for running longer workloads. See [the comparison between Serverless products](/serverless-containers/reference-content/difference-jobs-functions-containers) for more information.
216
216
217
-
## Queue trigger
218
-
219
-
A queue trigger is a mechanism that connects a container to a queue created with [Scaleway Queues](/messaging/concepts/#queues), and invokes the container automatically whenever a message is added to the queue.
220
-
221
-
For each message that is sent to a queue, the trigger reads the message and invokes the associated container with the message as the input parameter.
222
-
The container can then process the message and perform any required actions, such as updating a database or sending a notification.
223
-
224
-
## Rolling update
225
-
226
-
When deploying a new version of a Serverless Container, a rolling update is applied by default. This means that the new version of the service is gradually rolled out to your users without downtime.
227
-
Here is how it works:
228
-
229
-
* When a new version of your container is deployed, the platform automatically starts routing traffic to the new version incrementally, while still serving requests from the old version until the new one is fully deployed.
230
-
* Once the new version is successfully running, we gradually shift all traffic to it, ensuring zero downtime.
231
-
* The old version is decommissioned once the new version is fully serving traffic.
232
-
233
-
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
234
-
235
217
## Stateless
236
218
237
219
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.
Copy file name to clipboardExpand all lines: pages/serverless-jobs/concepts.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,13 +68,17 @@ It automatically handles infrastructure management, scaling, and load balancing,
68
68
69
69
## Serverless Functions
70
70
71
-
Serverless Functions are serverless, fully managed compute services that allow you to run small, stateless code snippets or functions in response to HTTP requests or events.
71
+
Serverless Functions are fully managed compute services that allow you to run small, stateless code snippets or functions in response to HTTP requests or events.
72
72
73
73
These functions automatically scale based on demand and are designed to be lightweight, event-driven, and easily deployable, eliminating the need to worry about infrastructure management. Functions is built on top of Serverless Containers, meaning you can run your functions packaged in containers and have them scale efficiently.
0 commit comments