Serverless-Computing 2.pptx - 20240926 - 131955 - 0000
Serverless-Computing 2.pptx - 20240926 - 131955 - 0000
By : Prayan A M
Reg No : 2201131001
Conten
ts :
1.Introduction
2.Benefi ts of Serverless Computing
3.Challenges and Limitations
4.Working Process
5.Serverless Computing vs Server
based Computing
6.Serverless Computing use cases
7.Cost Management
8.Security Considerations
9.Future of Serverless Computing
10.Conclusion
11.Questions
Introduction :
1 Cost-Effective 3 Scalability
Pay only for the Automatically scale up
resources you use, on or down based on
idle servers. demand, handling
spikes effortlessly.
• Cold Starts: Serverless functions can experience delays when starting up for the first
time causing slower performance.
• Vendor Lock-In: It can be difficult and costly to switch cloud providers once you`re
using their specific tools and services .
• Debugging and Monitoring: It is more challenging to track and fix issues because
you have les control over the system that runs your code.
• Limited Execution Time: Serverless functions have time limits, which can be a
problem for long-running tasks.
Working Process
Event Trigger
1
A serverless function is triggered by an event,
such as an HTTP request, a message in a queue,
or a change in a database.
Function Execution
2
The function executes in response to the event,
performing the necessary tasks and calculations.
Result Output
3
The function outputs the results of its execution,
such as data, messages, or API responses.
Serverless Computing vs Server-based Computing