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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -219,7 +219,7 @@ Refers to a system or application that does not maintain any persistent state be
219
219
220
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
221
222
-
To store informations you can use [Scaleway Object Storage](/storage/object/), [Scaleway Managed Databases](/managed-databases/postgresql-and-mysql/), [Scaleway Serverless Databases](/serverless/sql-databases/).
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/).
Copy file name to clipboardExpand all lines: serverless/functions/concepts.mdx
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ categories:
14
14
15
15
## Build step
16
16
17
-
Before deploying a Serverless Functions it has to be built, this step occurs on deployment.
17
+
Before deploying Serverless Functions, they have to be built. This step occurs during deployment.
18
18
19
19
Once the Function is built into an image, it will be pushed to [Container Registry](#container-registry)
20
20
@@ -47,11 +47,11 @@ An endpoint is the URL generated to access your resource. It can be customized w
47
47
48
48
## Environment variables
49
49
50
-
Environment variables are key/value pairs injected in your container. They are useful to share information such as configurations with your container. Some names are reserved. [See details about reserved names](/serverless/functions/reference-content/functions-limitations/#configuration-restrictions).
50
+
Environment variables are key/value pairs injected in your container. They are useful for sharing information such as configurations with your container. Some names are reserved. [See details on reserved names](/serverless/functions/reference-content/functions-limitations/#configuration-restrictions).
51
51
52
52
## GB-s
53
53
54
-
Unit used to measure the resource consumption of a Function. It reflects the amount of memory consumed over time.
54
+
Unit used to measure the resource consumption of a function. It reflects the amount of memory consumed over time.
55
55
56
56
## JWT Token
57
57
@@ -71,15 +71,15 @@ The Serverless infrastructure manages incoming request traffic. In scenarios lik
71
71
72
72
## Logging
73
73
74
-
Serverless offers a built-in logging system based on cockpit to follow the activity of your ressources:[monitoring Serverless Functions](/serverless/functions/how-to/monitor-function/).
74
+
Serverless offers a built-in logging system based on Scaleway Cockpit to track the activity of your resources: see[monitoring Serverless Functions](/serverless/functions/how-to/monitor-function/).
75
75
76
76
## Max scale
77
77
78
78
This parameter sets the maximum number of function instances. You should adjust it based on your function's traffic spikes, keeping in mind that you may wish to limit the max scale to manage costs effectively.
79
79
80
80
## Metrics
81
81
82
-
Performances of your Serverless ressources are natively available: [monitoring Serverless Functions](/serverless/functions/how-to/monitor-function/)).
82
+
Performance metrics for your Serverless resources are natively available: see[monitoring Serverless Functions](/serverless/functions/how-to/monitor-function/)).
83
83
84
84
## Min scale
85
85
@@ -111,14 +111,14 @@ The function can then process the message and perform any required actions, such
111
111
112
112
## Rolling update
113
113
114
-
hen deploying a new version of a Serverless Function, a rolling update happens by default. This means that the new version of the service is gradually rolled out to your users without downtime.
114
+
When deploying a new version of a Serverless Function, 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.
115
115
Here is how it works:
116
116
117
117
* When a new version of your function 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.
118
-
* Once the new version is successfully running, we gradually shifts all traffic to it, ensuring zero downtime.
118
+
* Once the new version is successfully running, we gradually shift all traffic to it, ensuring zero downtime.
119
119
* The old version is decommissioned once the new version is fully serving traffic.
120
120
121
-
This process ensures a seamless update experience, minimizing disruption to users 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.
121
+
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 them.
122
122
123
123
## Runtime
124
124
@@ -152,9 +152,9 @@ Serverless.com (Serverless Framework) is a tool that enables the deployment of s
152
152
153
153
## Serverless Function
154
154
155
-
A Serverless Function are serverless, fully managed compute services that allow you to run small, stateless code snippets or functions in response to HTTP requests or events.
155
+
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.
156
156
157
-
These functions automatically scale based on demand and are designed to be lightweight, event-driven, and easily deployable without worrying 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.
157
+
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.
158
158
159
159
## Serverless Job
160
160
@@ -166,7 +166,7 @@ Refers to a system or application that does not maintain any persistent state be
166
166
167
167
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.
168
168
169
-
To store informations you can use [Scaleway Object Storage](/storage/object/), [Scaleway Managed Databases](/managed-databases/postgresql-and-mysql/), [Scaleway Serverless Databases](/serverless/sql-databases/).
169
+
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/).
Copy file name to clipboardExpand all lines: serverless/jobs/concepts.mdx
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ categories:
14
14
15
15
## Container Registry
16
16
17
-
Container Registry is the place where your images are stored before being deployed, we recommend using Scaleway Container Registry for optimal integration. [Migration guide](/serverless/containers/api-cli/migrate-external-image-to-scaleway-registry/).
17
+
Container Registry is the place where your images are stored before being deployed. We recommend using Scaleway Container Registry for optimal integration. See the [migration guide](/serverless/containers/api-cli/migrate-external-image-to-scaleway-registry/) for full details.
18
18
19
19
## Environment variables
20
20
@@ -46,15 +46,15 @@ A job run is the execution of a job definition. It can be in a running, succeede
46
46
47
47
## Logging
48
48
49
-
Serverless offers a built-in logging system based on cockpit to follow the activity of your ressources:[monitoring Serverless Jobs](/serverless/jobs/how-to/monitor-job/).
49
+
Serverless offers a built-in logging system based on Scaleway Cockpit to track the activity of your resources: see[monitoring Serverless Jobs](/serverless/jobs/how-to/monitor-job/).
50
50
51
51
## Maximum duration
52
52
53
53
The maximum duration option allows you to define the maximum execution time before your job is automatically killed.
54
54
55
55
## Metrics
56
56
57
-
Performances of your Serverless ressources are natively available: [monitoring Serverless Jobs](/serverless/jobs/how-to/monitor-job/).
57
+
Performance metrics for your Serverless resources are natively available: see[monitoring Serverless Jobs](/serverless/jobs/how-to/monitor-job/).
58
58
59
59
## Schedule (cron)
60
60
@@ -70,19 +70,19 @@ This optional field allows you to specify a custom command executed upon startin
70
70
71
71
## Status
72
72
73
-
A Serverless Job Run can have the following statuses:
74
-
***Succeeded**: your Serverless Job Run finished in a good state.
75
-
***Queued**: your Serverless Job Run is waiting for ressources to run.
76
-
***Error**: your Serverless Job Run finished with an error or timeout. [Check our troubleshooting documentation](/serverless/jobs/troubleshooting/job-in-error-state/) to solve the issue.
77
-
***Canceled**: your Serverless Job Run has been canceled by the user.
73
+
A Serverless Job run can have the following statuses:
74
+
***Succeeded**: your Serverless Job run finished in a successful state.
75
+
***Queued**: your Serverless Job run is waiting for resources to run.
76
+
***Error**: your Serverless Job run finished with an error or timeout. [Check our troubleshooting documentation](/serverless/jobs/troubleshooting/job-in-error-state/) to solve the issue.
77
+
***Canceled**: your Serverless Job run has been canceled by the user.
78
78
79
79
## Stateless
80
80
81
81
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.
82
82
83
83
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.
84
84
85
-
To store informations you can use [Scaleway Object Storage](/storage/object/), [Scaleway Managed Databases](/managed-databases/postgresql-and-mysql/), [Scaleway Serverless Databases](/serverless/sql-databases/).
85
+
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/).
0 commit comments