Skip to content

Commit e6c9f19

Browse files
thomas-tacquetRoRoJ
authored andcommitted
Apply suggestions from code review
Co-authored-by: Rowena Jones <[email protected]>
1 parent 7224612 commit e6c9f19

File tree

2 files changed

+6
-20
lines changed

2 files changed

+6
-20
lines changed

pages/serverless-containers/concepts.mdx

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -206,32 +206,14 @@ It automatically handles infrastructure management, scaling, and load balancing,
206206

207207
## Serverless Functions
208208

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.
210210

211211
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.
212212

213213
## Serverless Jobs
214214

215215
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.
216216

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-
235217
## Stateless
236218

237219
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.

pages/serverless-jobs/concepts.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,17 @@ It automatically handles infrastructure management, scaling, and load balancing,
6868

6969
## Serverless Functions
7070

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.
7272

7373
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.
7474

7575
## Serverless Jobs
7676

77+
<<<<<<< HEAD:pages/serverless-jobs/concepts.mdx
7778
Serverless Jobs are similar to Serverless Containers but are better suited for running longer workloads. See [the comparison between Serverless products](/serverless-jobs/reference-content/difference-jobs-functions-containers) for more information.
79+
=======
80+
Serverless Jobs are similar to Serverless Containers but are better suited for running longer workloads. See [the comparison between Serverless products](/serverless/jobs/reference-content/difference-jobs-functions-containers) for more information.
81+
>>>>>>> b19395d4f (Apply suggestions from code review):serverless/jobs/concepts.mdx
7882

7983
## Secrets reference
8084

0 commit comments

Comments
 (0)