Last active
July 13, 2022 08:40
-
-
Save lakshmantgld/85578cc3229127510b476d42adf57cfd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
╔══════════════════════════════════════════╦══════════════════════════════════════════╗ | |
║ AWS Lambda ║ Lolo Code ║ | |
╠══════════════════════════════════════════╬══════════════════════════════════════════╣ | |
║ - Lambdas are billed per invocation. ║ - Pricing is straightforward. With Lolo ║ | |
║ Although the billing is complex, as ║ you are not paying per invocation, ║ | |
║ it also depends on the memory used ║ you pay for the amount of traffic you ║ | |
║ and the execution time. ║ need to process every second. Serverless ║ | |
║ ║ application runs on Lolo compute ║ | |
║ - To make it even complex, if used ║ unit (LCU). Each LCU has 256 MB RAM. ║ | |
║ along with API Gateway for HTTP ║ Each compute unit costs €9/month. ║ | |
║ Triggers, then the API Gateway costs ║ ║ | |
║ also adds up. ║ - Free-tier supports 2 applications ║ | |
║ ║ which runs on LCU. Each LCU can ║ | |
║ - Free tier allows up to 1 Million ║ handle up to 15 thousand ║ | |
║ invocations per month. ║ events/second. If the load increases, ║ | |
║ ║ add one more replica at €9/month. ║ | |
║ - Right use case based on the cost: if ║ ║ | |
║ you need to process more than 15k events ║ - Right use case based on the cost: ║ | |
║ per second for just a few seconds every ║ If you need to process both more ║ | |
║ month, then Lambda is the right choice ║ events and also have the traffic ║ | |
║ as this will fall under the free-tier ║ throughout the month then Lolo code ║ | |
║ of the most cloud provider. ║ is the cheapest option. ║ | |
╚══════════════════════════════════════════╩══════════════════════════════════════════╝ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment