Skip to content

Commit 97911c3

Browse files
update faq
1 parent 138c221 commit 97911c3

File tree

3 files changed

+62
-2
lines changed

3 files changed

+62
-2
lines changed

faq/serverless-containers.mdx

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

13+
## What is serverless computing and how does it differ from traditional cloud hosting?
14+
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.
16+
17+
## Why consider using Serverless Containers, Functions or Jobs for my projects?
18+
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.
20+
21+
## Can I run any application on Serverless Containers?
22+
23+
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.
24+
25+
## What are the cost benefits of using serverless services like Serverless Containers?
26+
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.
28+
29+
## How does scaling work in these serverless services?
30+
31+
Scaling in Serverless Containers and Serverless Functions is handled automatically by the platform. When demand increases—more requests or events—the platform spins up additional instances to handle the load. When demand decreases, instances spin down. This ensures optimal performance without manual intervention.
32+
33+
## How do I integrate my serverless solutions with other Scaleway services?
34+
35+
Integration is straightforward. Serverless Functions and Containers can be triggered by events from Queues, SQS and SNS and can easily communicate with services like Managed databases or Serverless databases. Serverless Jobs can pull data from Object Storage or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
36+
37+
## Can I migrate existing applications to Serverless Containers?
38+
39+
Yes. Many traditional applications can be containerized and deployed to Serverless Containers. This makes it easier to modernize legacy systems without a complete rewrite. By moving to a serverless platform, you gain automatic scaling, reduced operational overhead, and a simpler infrastructure management experience.
40+
1341
## Are applications deployed on Serverless Containers stateless?
1442

1543
Yes, all applications deployed on Serverless Containers are stateless. This means the server does not store any state about the client session. Instead, the session data is stored on the client and passed to the server as needed.

faq/serverless-functions.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@ category: serverless
1010
productIcon: FunctionsProductIcon
1111
---
1212

13+
## What is serverless computing and how does it differ from traditional cloud hosting?
14+
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.
16+
17+
## Why consider using Serverless Containers, Functions or Jobs for my projects?
18+
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.
20+
21+
## What are the cost benefits of using serverless services like Serverless Containers and Serverless Functions?
22+
23+
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.
24+
25+
## How does scaling work in these serverless services?
26+
27+
Scaling in Serverless Containers and Serverless Functions is handled automatically by the platform. When demand increases—more requests or events—the platform spins up additional instances to handle the load. When demand decreases, instances spin down. This ensures optimal performance without manual intervention.
28+
29+
## How do I integrate my serverless solutions with other Scaleway services?
30+
31+
Integration is straightforward. Serverless Functions and Containers can be triggered by events from Queues, SQS and SNS and can easily communicate with services like Managed databases or Serverless databases. Serverless Jobs can pull data from Object Storage or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
32+
1333
## How am I billed for Serverless Functions?
1434

1535
### Principle

faq/serverless-jobs.mdx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,21 @@ category: serverless
1010
productIcon: ServerlessJobsProductIcon
1111
---
1212

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

15-
Scaleway Serverless Jobs is a fully managed service that enables efficient execution of batch computing workloads. It automates management tasks, allowing users to run large-scale batch jobs with ease.
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.
16+
17+
## Why consider using Serverless Containers, Functions or Jobs for my projects?
18+
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.
20+
21+
## What is Serverless Jobs, and when should I use it?
22+
23+
Serverless Jobs allows you to run large-scale batch processing and computational workloads in a fully managed environment. If you have tasks like data processing, machine learning training jobs, simulations, or large-scale analytics that can be parallelized, Serverless Jobs helps you orchestrate and manage those workloads seamlessly.
24+
25+
## How do I integrate my serverless solutions with other Scaleway services?
26+
27+
Integration is straightforward. Serverless Functions and Containers can be triggered by events from Queues, SQS and SNS and can easily communicate with services like Managed databases or Serverless databases. Serverless Jobs can pull data from Object Storage or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
1628

1729
## How am I billed for Serverless Jobs?
1830

0 commit comments

Comments
 (0)