Cloud Serverless Pricing Tutorial (WITH EXAMPLE) | How to Calculate AWS Lambda Costs

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 พ.ค. 2024
  • Today is about how much Lambda actually costs. The AWS website provides a high-level examples but still leaves you wondering the exact amount your code will cost to run.
    Price is often one of the most important factors in a project. The peace of mind you get from knowing your costs is immeasurable, and for Lambda, fairly simple.
    Average Memory Query 👉
    filter @type = "REPORT"
    | stats max(@memorySize / 1024 / 1024) as provisonedMemoryMB,
    min(@maxMemoryUsed / 1024 / 1024) as smallestMemoryRequestMB,
    avg(@maxMemoryUsed / 1024 / 1024) as avgMemoryUsedMB,
    max(@maxMemoryUsed / 1024 / 1024) as maxMemoryUsedMB,
    provisonedMemoryMB - maxMemoryUsedMB as overProvisionedMB
    How GrubGuide is Architected 👉dylanalbertazzi.com/writings/...
    Personal Website 👉 dylanalbertazzi.com/
    Sources 👉 pastebin.com/MT8h0L0Z
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 7

  • @argl1995
    @argl1995 2 ปีที่แล้ว +4

    Great stuff!! I learnt one new trick to find the average memory using AWS CloudWatch for Lambda Function. Thanks for posting!!!!

  • @TheFern2
    @TheFern2 9 หลายเดือนก่อน

    Hi Dylan great video. I clicked on the link to your architecture article on the description and is asking for notion login. I tried logging in with my account but didn't work. Is this article accessible somewhere else?

  • @user-zl9ku2wu4s
    @user-zl9ku2wu4s ปีที่แล้ว

    very nice

  • @dushansilva1
    @dushansilva1 2 ปีที่แล้ว +2

    hey don't we need to factor in api gateway costs ?

    • @dylanalbertazzi
      @dylanalbertazzi  2 ปีที่แล้ว +2

      Yes we do!
      ... I kept it Lambda for this one because that would've made for a much larger video.