Skip to content

Commit f94b150

Browse files
Apply suggestions from code review
Co-authored-by: Jessica <[email protected]>
1 parent 9c2aed1 commit f94b150

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

pages/serverless-containers/reference-content/serverless-handbook.mdx

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ categories:
1414
- containers
1515
---
1616

17-
# What is Serverless Compute?
17+
# What is serverless compute?
1818

19-
Serverless computing is a cloud computing model where the cloud providers manages the infrastructure and dynamically alocates computing resources as needed.
19+
Serverless computing is a cloud computing model where the cloud providers manage the infrastructure and dynamically allocate computing resources as needed.
2020

21-
This means that you don't have to provision machines, manage a cluster or pay for servers. Your application code is executed on demand and you only pay for the compute time consumed by your software.
21+
This means that there is no need to provision machines, manage a cluster, or pay for servers. Your application code is executed on demand, and you only pay for the computing time consumed by your software.
2222

2323
This approach enables greater scalability, flexibility and cost-effectiveness.
2424

2525
Key features:
26-
* **Automatic scaling:** your application can scale up or down automatically based on demand
27-
* **No server management:** you don't need to provision, maintain or manage servers
28-
* **Pay as ou go:** you only pay for the compute time you consume, making it cost effective
26+
* **Automatic scaling:** Your application can scale up or down automatically based on demand
27+
* **No server management:** No need to provision, maintain, or manage servers
28+
* **Pay as you go:** Only pay for the computing time you consume, making it cost-effective
2929

3030
Serverless is not limited to Serverless Functions which is perfect to deploy small chunks of code, it can also directly deploy containers on Serverless Containers and Serverless Jobs.
3131
Refer to the [differences between Functions, Jobs, and Containers](/serverless-containers/reference-content/difference-jobs-functions-containers/) for more information on Scaleway's different Serverless products.
@@ -35,16 +35,16 @@ Refer to the [differences between Functions, Jobs, and Containers](/serverless-c
3535
Serverless offers numerous advantages that can significantly enhance your development and operational efficiency:
3636

3737
* **Cost savings:** You only pay for the compute time your code uses, which can lead to significant cost reductions. No idle resources
38-
* **Scalability:** Automatically scale your applications to handle varying loads without manual intervention. It's perfect for seasonal traffic and viral apps
38+
* **Scalability:** Automatically scale your applications to handle varying loads without manual intervention. It is perfect for seasonal traffic and viral apps
3939
* **Faster time to market:** Focus on writing code rather than managing infrastructure, accelerating your development cycles
4040
* **Reduced operational overhead:** Let the cloud provider handle server maintenance, updates, and scaling, freeing up your team to focus on innovation
41-
* **Eco friendly:** Optimized resource usage reduces wasted energy
42-
* **Focus on apps:** you can put all your energy in application value instead of managing infrastructure
41+
* **Eco-friendly:** Optimized resource usage reduces wasted energy
42+
* **Focus on apps:** you can put all your energy into the application value instead of managing infrastructures
4343

44-
# How to control costs of Serverless?
44+
# How to control the costs of Serverless?
4545

46-
Serverless is inherently cost-transparent, tips to otpimize costs:
47-
* **Cost estimator:** when deploying Serverless resources via Scaleway Console, you can try different parameters to evaluate costs
46+
Serverless is inherently cost-transparent, tips to optimize costs:
47+
* **Cost estimator:** When deploying Serverless resources via Scaleway Console, you can try different parameters to evaluate costs
4848
* **Best practices** Use efficient code with optimized libraries, ensuring a small resource footprint
4949
* **Monitoring** Monitor usage with built-in observability and use Cost Manager: [How to use cost manager documentation](/billing/how-to/use-the-cost-manager/)
5050
* **Parameters** Define a max-scale setting according to traffic spikes
@@ -56,15 +56,15 @@ Remember: Serverless eliminates upfront capital expenses and reduces operational
5656
By adopting Serverless, you are choosing agility, innovation, and cost savings.
5757
Whether you are a startup scaling rapidly or an enterprise modernizing legacy systems, Serverless lets you focus on what matters: delivering value to your users.
5858

59-
You can fully deploy your API on Serverless or use it to emporer and add automation to your infrastructure.
60-
Serverless is excellent at handling traffic spikes, useful to offload regular servers on special events.
59+
You can fully deploy your API on Serverless or use it to empower and add automation to your infrastructure.
60+
Serverless is excellent at handling traffic spikes, which is useful for offloading regular servers during special events.
6161

62-
# Is my applicaiton a good fit for Serverless?
62+
# Is my application a good fit for serverless?
6363

64-
Most applications can benefit from Serverless! Here's when it shines:
64+
Most applications can benefit from serverless. Check some use cases:
6565

66-
* **Event driven workloads:** file processing, real time notification, IoT data streams
67-
* **Microservies and APIs:** Stateless, short-lived tasks (e.g., user authentication, payment processing, etc...)
66+
* **Event-driven workloads:** file processing, real-time notification, IoT data streams
67+
* **Microservices and APIs:** Stateless, short-lived tasks (e.g., user authentication, payment processing, etc.)
6868
* **Sporadic traffic:** Apps with variable usage (e.g., marketing campaigns, ticketing system).
6969
* **Rapid prototyping:** Test ideas quickly without upfront infrastructure investment
7070

@@ -91,15 +91,15 @@ We believe in empowering your freedom to choose, adapt, and evolve. Here is how
9191

9292
## Container portability
9393
- **Docker compatibility**: Your container images (built with Docker, Helm, or other tools) are portable. You can redeploy them elsewhere—on-premises, on other clouds, or in hybrid environments.
94-
- **No proprietary formats**: We don't modify your containers. What you build works anywhere.
94+
- **No proprietary formats**: We do not modify your containers. What you build works anywhere.
9595

9696
## No proprietary lock-in
9797
- **No forced dependencies**: Some providers require customers to import specific libraries to work properly. We do not.
98-
- **Open APIs**: Manage Serverless Containers via REST APIs, Terraform, CLI, etc... no proprietary control required.
98+
- **Open APIs**: Manage Serverless Containers via REST APIs, Terraform, CLI, and more with no proprietary control required.
9999

100-
# How to migrate to Serverless ecosystem?
100+
# How to migrate to a Serverless ecosystem?
101101

102-
Serverless products at Scaleway allows you to gradually migrate to Serverless, different strategies are possible:
102+
Serverless products at Scaleway allow you to gradually migrate to Serverless, offering different strategies:
103103

104104
## Start small
105105

@@ -108,15 +108,15 @@ Serverless products at Scaleway allows you to gradually migrate to Serverless, d
108108

109109
## Hybrid architecture
110110

111-
* **Coexistance:** Run serverless endpoints alongside VM, clusters and traditional apps
111+
* **Coexistence:** Run serverless endpoints alongside VMs, clusters, and traditional apps
112112

113113
## Incremental refactoring
114114

115115
* **Break monoliths:** Convert microservices or stateless components to Serverless first
116116

117117
# What specific knowledge is required to deploy Serverless projects?
118118

119-
Serverless is designed to eliminate infrastructure complexity , so teams can focus on innovation:
119+
Serverless is designed to eliminate infrastructure complexity, so teams can focus on innovation:
120120

121121
## No infrastructure expertise needed
122122

@@ -133,7 +133,7 @@ Serverless is designed to eliminate infrastructure complexity , so teams can foc
133133
* **Minimal learning curve:* Teams only need to understand event-driven architecture, container basics, and Scaleway’s serverless console/CLI
134134
* **Training resources:** Free tutorials, examples, and free-tier to experiment
135135

136-
# Is Servereless a good choice for a growing business?
136+
# Is Serverless a good choice for a growing business?
137137

138138
Absolutely. Serverless is ideal for startups and scaling businesses due to its cost efficiency, elasticity, and operational simplicity:
139139

0 commit comments

Comments
 (0)