Skip to content

Commit dc10b94

Browse files
thomas-tacquetjcirinosclwyRoRoJ
authored
Apply suggestions from code review
Co-authored-by: Jessica <[email protected]> Co-authored-by: Rowena Jones <[email protected]>
1 parent 2c21869 commit dc10b94

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

faq/serverless-containers.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,34 @@ category: serverless
1010
productIcon: ContainersProductIcon
1111
---
1212

13-
## What is serverless computing and how does it differ from traditional cloud hosting?
13+
## What is serverless computing, and how does it differ from traditional cloud hosting?
1414

15-
Serverless computing is a cloud execution model where the cloud provider dynamically manages the allocation of compute resources. Unlike traditional hosting models, you don’t need to provision, scale, or maintain servers. Instead, you focus solely on writing and deploying your code, and the infrastructure scales automatically to meet demand.
15+
Serverless computing is a cloud execution model where the cloud provider dynamically manages the allocation of compute resources. Unlike traditional hosting models, you do not need to provision, scale, or maintain servers. Instead, you focus solely on writing and deploying your code, and the infrastructure scales automatically to meet demand.
1616

17-
## Why consider using Serverless Containers, Functions or Jobs for my projects?
17+
## Why consider using Serverless Containers, Functions, or Jobs for my projects?
1818

19-
These services allow you to build highly scalable, event-driven, and pay-as-you-go solutions. Serverless Containers and Functions help you create applications and microservices without worrying about server management, while Serverless Jobs let you run large-scale, parallel batch processing tasks efficiently. This can lead to faster development cycles, reduced operational overhead, and cost savings.
19+
These services allow you to build highly scalable, event-driven, and pay-as-you-go solutions. Serverless Containers and Functions help you create applications and microservices without worrying about server management, while Serverless Jobs lets you run large-scale, parallel batch-processing tasks efficiently. This can lead to faster development cycles, reduced operational overhead, and cost savings.
2020

2121
## Can I run any application on Serverless Containers?
2222

2323
Yes. Because Serverless Containers supports any containerized application, you can choose the language, runtime, and framework that best suits your needs. As long as it can run in a container and respond to HTTP requests, Serverless Containers can host it.
2424

2525
## What are the cost benefits of using serverless services like Serverless Containers?
2626

27-
With serverless, you only pay for the compute resources you actually use. There are no upfront provisioning costs or paying for idle capacity. When your application traffic is low, the cost scales down, and when traffic spikes, the platform automatically scales up, ensuring you never overpay for unused resources.
27+
With serverless, you only pay for the computing resources you use. There are no upfront provisioning costs or paying for idle capacity. When your application traffic is low, the cost scales down, and when traffic spikes, the platform automatically scales up, ensuring you never overpay for unused resources.
2828

29-
## Does updates of Serverless Containers can cause downtime?
29+
## Can updates of Serverless Containers cause downtime?
3030

31-
No, when deploying a new version of your Serverless Container generates a **rolling update**. This means that a new version of the service is gradually
31+
No, deploying a new version of your Serverless Container generates a **rolling update**. This means that a new version of the service is gradually
3232
rolled out to your users without downtime. Here is how it works:
3333

3434
* 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.
35-
* Once the new version is successfully running, we gradually shifts all traffic to it, ensuring zero downtime.
35+
* Once the new version is successfully running, we gradually shift all traffic to it, ensuring zero downtime.
3636
* The old version is decommissioned once the new version is fully serving traffic.
3737

38-
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.
38+
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.
3939

40-
## Can I update Serverless Container ressources (vCPU and RAM) at any time?
40+
## Can I upgrade Serverless Container resources (vCPU and RAM) at any time?
4141

4242
Yes, Serverless Containers ressources can be changed at any time without causing downtime, see previous question.
4343

0 commit comments

Comments
 (0)