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
@@ -19,7 +19,7 @@ Cold start is the time a Container takes to handle a request when it is called f
19
19
Startup process steps are:
20
20
* Downloading the container image to our infrastructure
21
21
* Starting the container. Optimize your container startup speed to minimize this step (e.g., avoid waiting for slow connections or downloading large objects at startup)
22
-
* Waiting for the containeer to listen on the configured port.
22
+
* Waiting for the container to listen on the configured port.
23
23
24
24
[How to reduce cold starts](/faq/serverless-containers/#how-can-i-reduce-the-cold-starts-of-serverless-containers)
25
25
@@ -29,7 +29,7 @@ Concurrency defines the number of simultaneous requests a single instance of you
29
29
30
30
## Container
31
31
32
-
A container is a package of software that includes all dependencies: code, runtime, configuration, and system libraries so that it can run on any host system. Scaleway provides custom Docker images that are entirely handled for you in the cloud. With Containers, you can rely on your favorite technologies such as Django or Ruby on Rails.
32
+
A container is a package of software that includes all dependencies: code, runtime, configuration, and system libraries so that it can run on any host system. Scaleway provides custom Docker images that are entirely handled for you in the cloud. With Containers, you can rely on your favorite technologies such as Django, or Ruby on Rails.
33
33
34
34
## Container Registry
35
35
@@ -41,11 +41,11 @@ A CRON trigger is a mechanism used to automatically invoke a Serverless Function
41
41
42
42
## Environment variables
43
43
44
-
An environment variable is a variable whose value is set outside the program, typically through functionality built into the operating system or microservice. An environment variable is made up of a name/value pair, and any number may be created and available for reference at a point in time.
44
+
An environment variable is a variable whose value is set outside the program, typically through functionality built into the operating system, or microservice. An environment variable is made up of a name/value pair, and any number may be created and available for reference at a point in time.
45
45
46
46
## Ephemeral storage
47
47
48
-
In addition to VCPU and RAM, Serverless Containers also provide a storage volume for the duration of the task. This storage space allows to hold the data retrieved by the job, and disappears once the execution is complete. The maximum size of the ephemeral storage is tied to the allocated memory.
48
+
In addition to vCPU and RAM, Serverless Containers also provide a storage volume for the duration of the task. This storage space allows to hold the data retrieved by the job, and disappears once the execution is complete. The maximum size of the ephemeral storage is tied to the allocated memory.
49
49
50
50
## GB-s
51
51
@@ -59,9 +59,9 @@ An image is a blueprint from which an arbitrary number of brand-new containers c
59
59
60
60
JWT (JSON Web Token) is an access token you can create from the console or API to enable an application to access your Private Container. Consult the [Developer documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-tokens) for more details.
61
61
62
-
## mVCPU
62
+
## mvCPU
63
63
64
-
A vCPU (Virtual Central Processing Unit) is equivalent to 1000 mVCPU.
64
+
A [vCPU](#vcpu) (Virtual Central Processing Unit) is equivalent to 1000 mvCPU.
Cold Start is the time a Fuction takes to handle a request when it is called for the first time.
17
+
Cold Start is the time a function takes to handle a request when it is called for the first time.
18
18
19
19
Startup process steps are:
20
20
* Downloading the container image (which contains the built Function) to our infrastructure
@@ -68,13 +68,13 @@ The runtime is the execution environment of your function. Regarding Serverless
68
68
69
69
## Sandbox
70
70
71
-
A sandbox is an isolation area for your container. Serverless Containers offer two sandboxing environments:
71
+
A sandbox is an isolation area for your function. Serverless Functions offer two sandboxing environments:
72
72
-**v2** - Recommended for faster cold starts.
73
73
-**v1** - Legacy sandboxing with slower cold start, but fully supports Linux system call interface.
74
74
75
75
## Scale to zero
76
76
77
-
One of the advantages of Serverless Function is that when your function is not triggered, it does not consume any resources, which allows great savings.
77
+
One of the advantages of Serverless Functions is that when your function is not triggered, it does not consume any resources, which allows for significant savings.
Copy file name to clipboardexpand all lines: serverless/sql-databases/concepts.mdx
+3-3
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Detailed explanation of concepts and architecture behind Scaleway's serverless SQL databases.
8
8
tags: sql databases serverless
9
9
dates:
10
-
validation: 2024-05-06
10
+
validation: 2024-11-14
11
11
categories:
12
12
- serverless
13
13
---
@@ -22,7 +22,7 @@ Autoscaling can automatically scale your database resources up or down, dependin
22
22
23
23
## Backup
24
24
25
-
A database backup is a copy of the data stored in the database (including data structure, such as tables). Database backups in Serverless SQL Databases are logical backups (as opposed to raw disk volume backups, also called "snapshots"). Database backups can be restored in the current database or any other PostgreSQL database and, allow recovery from database crashes, data corruption, or data loss.
25
+
A database backup is a copy of the data stored in the database (including data structure, such as tables). Database backups in Serverless SQL Databases are logical backups (as opposed to raw disk volume backups, also called "snapshots"). Database backups can be restored in the current database or any other PostgreSQL database, and allow recovery from database crashes, data corruption, or data loss.
26
26
27
27
## Cold start
28
28
@@ -34,7 +34,7 @@ Connection pooling is the process of mutualizing client connections used to conn
34
34
35
35
## Credentials
36
36
37
-
Credentials are the login and password (also called "username" and "password" in PostgreSQL vocabulary) used by a user or an application to connect to a database. With Scaleway Serverless SQL Databases, logins are [IAM principal IDs](/identity-and-access-management/iam/concepts/#principal) and passwords are [IAM secret keys](/identity-and-access-management/iam/concepts/#api-key).
37
+
Credentials are the login and password (also called "username" and "password" in PostgreSQL vocabulary) used by a user, or an application to connect to a database. With Scaleway Serverless SQL Databases, logins are [IAM principal IDs](/identity-and-access-management/iam/concepts/#principal) and passwords are [IAM secret keys](/identity-and-access-management/iam/concepts/#api-key).
Copy file name to clipboardexpand all lines: tutorials/deploy-umami-on-serverless-containers/index.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ Umami is a simple, easy-to-use, self-hosted web analytics solution. It provides
73
73
2. Click **+ Deploy a Container**. The container deployment wizard displays.
74
74
3. Choose the namespace you pushed the image to and select the `umami:postgresql-latest` image. Set the value for the port to `3000`.
75
75
4. Enter a name for your container. Optionally, you can enter a container description.
76
-
5. Select the resources you want to allocate to the container. The resources to allocate depend on the intended load of your application. In this tutorial we use **128 MB - 70 mVCPU**.
76
+
5. Select the resources you want to allocate to the container. The resources to allocate depend on the intended load of your application. In this tutorial we use **128 MB - 70 mvCPU**.
77
77
6. Configure the minimum and maximum values to autoscale the number of available instances for your container.
78
78
7. Set the Secrets. Secrets are an extra-secure type of environment variables that are injected into your container and stored securely:
0 commit comments