Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions serverless/containers/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ An environment variable is a variable whose value is set outside the program, ty

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.

## GB-s
## GB/s
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @thomas-tacquet, we're not sure about this change, as GB-s is what we have in our guidelines, and seems to be in line with other cloud providers, when it comes to the unit to measure Serverless consumption.

GB/s = data transfer rate
GB-s = quantity of data stored or processed over a specific duration

What do you think, is there a specific reason you wanted to make this change?


Unit used to measure the resource consumption of a container. It reflects the amount of memory consumed over time.

Expand Down Expand Up @@ -123,7 +123,7 @@ The timeout is the maximum length of time your container can spend processing a
vCPU is the abbreviation for **v**irtual **C**entralized **P**rocessing **U**nit. A vCPU represents a portion or share of the underlying physical CPU assigned to a particular container.
The performance of a vCPU is determined by the percentage of time spent on the physical processor's core. It is possible to allocate different resource allowances on specific vCPUs for specific containers or virtual machines.

## vCPU-s
## vCPU/s

Unit used to measure the resource consumption of a container. It reflects the amount of vCPU used over time.

Expand Down
4 changes: 2 additions & 2 deletions serverless/functions/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ An environment variable is a variable whose value is set outside the program, ty

A function defines a procedure on how to change one element into another. The function remains static, while the variables that pass through it can vary.

## GB-s
## GB/s

Unit used to measure the resource consumption of a function. It reflects the amount of memory consumed over time.

Expand Down Expand Up @@ -112,6 +112,6 @@ A trigger is a mechanism that connects the function to an event source and enabl

Triggers can take many forms, such as HTTP requests, messages from a queue or a stream, CRON schedules, etc.

## vCPU-s
## vCPU/s

Unit used to measure the resource consumption of a container. It reflects the amount of vCPU used over time.
6 changes: 3 additions & 3 deletions serverless/jobs/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories:

## Container image

A container image is a file that includes all the requirements and instructions of a complete and executable version of an application.
A container image is a file that includes all the requirements and instructions of a complete and executable version of an application.
When running a job, the selected image will be pulled to execute your workload. Images can come from public external registries or from the [Scaleway Container Registry](/containers/container-registry/concepts/#container-registry).

## Environment variables
Expand All @@ -25,7 +25,7 @@ An environment variable is a variable whose value is set outside the program, ty

In addition to CPU and RAM, Serverless Jobs 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.

## GB-s
## GB/s

Unit used to measure the resource consumption of a container. It reflects the amount of memory consumed over time.

Expand Down Expand Up @@ -57,6 +57,6 @@ A schedule (cron) is a mechanism used to automatically start a Serverless Job at

This optional field allows you to specify a custom command executed upon starting your job if your container image does not have one already, or if you use a public container image.

## vCPU-s
## vCPU/s

Unit used to measure the resource consumption of a container. It reflects the amount of vCPU used over time.