Easy to integrate servers less functions
Rating: 6 out of 10
IncentivizedUse Cases and Deployment Scope
We utiliza AWS Lambda to execute jobs and connects async executions to the rest of AWS services. AWS Lambda is also used based on events triggered by other AWS services or our application. In a particular case example you can use Lambda to send a email to a customer after some event happens and your application call the Lambda run.
Pros
- Asynchronous jobs
- Recurring jobs
- Scoped code execution
- Event follow up
Cons
- Interface
- Usage
- Debugging
Likelihood to Recommend
Well suited for asynchronous specific job execution, such as a follow up process after some event
Not suites for long running multi purpose job such as running a whole application or jobs that requires storing and passing info in memory
Not suites for long running multi purpose job such as running a whole application or jobs that requires storing and passing info in memory
