• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Is AWS lambda the only serverless service in AWS?

 
Ranch Hand
Posts: 2962
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
AWS lambda is a serverless service where developer does not have to manage the server or scaling which are automatically done. Is AWS lambda the only service associated with serverless programming or there are others too? Thanks.
 
Ranch Hand
Posts: 82
1
  • Likes 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

Serverless doesn't mean an absence of servers or no servers. So, is it one of the most popular tech-misnomers? Maybe.

Serverless completely abstracts the underlying details of cloud infrastructure. The servers are still there, however you no longer require to manage them. Does this sound like the Cloud PaaS (Platform as a Service)?

There’s a subtle difference between PaaS & Serverless (FaaS). In PaaS, you have to plan & define an Auto-Scaling strategy whereas in Serverless (FaaS) you just don't care about how/what's happening behind the scene - i.e. complete abstraction!

In Serverless, basically, a Function spins-up servers with an event/trigger and cleans it up (the resources, etc.) once the request/task is completed.
There is always one or more servers. It is serverless because the space you use in their server is in a container.

Monitoring containers help them monetize and handle what you’re doing there.

For you it is also beneficial, if the specs of your container matches what your application needs, you have less things to deal with and less responsabilities. Generally speaking, the cost of the service is quickly lower than the cost of the maintenance of doing it yourself.

I hope this will help you
 
Bartender
Posts: 7645
178
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Monica Shiralkar wrote:AWS lambda is a serverless service where developer does have to manage the server or scaling


I think you meant to say "... where the developer does NOT have to manage..."
 
Monica Shiralkar
Ranch Hand
Posts: 2962
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim Moores wrote:
I think you meant to say "... where the developer does NOT have to manage..."


Yes. Thanks, corrected it.
 
Monica Shiralkar
Ranch Hand
Posts: 2962
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the detailed post. In apart from Lambda Functions, is there any other service in AWS that is also part of serverless programming?

Ishan Shah wrote:
There’s a subtle difference between PaaS & Serverless (FaaS). In PaaS, you have to plan & define an Auto-Scaling strategy whereas in Serverless (FaaS) you just don't care about how/what's happening behind the scene - i.e. complete abstraction!



I think we do not manage server in ElasticBeanStack too which is PaaS but not serverless, so what is the exact difference with regards to managing the server.
 
Monica Shiralkar
Ranch Hand
Posts: 2962
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I read that besides the lambda functions, Amazon Athena and Amazon Glue are also serverless services.
 
Eliminate 95% of the weeds in your lawn by mowing 3 inches or higher. Then plant tiny ads:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic