Build an AWS Lambda Serverless function with PyMongo & MongoDB

Поделиться
HTML-код
  • Опубликовано: 17 окт 2023
  • ✅ Sign-up for a free cluster at → mdb.link/free--ZSKyLspT3Q
    ✅ Get help on our Community Forums → mdb.link/community--ZSKyLspT3Q
    Follow along as MongoDB Developer Advocate Anaiya Raisinghani explains how to use AWS Lambda with PyMongo, MongoDB's Python Driver!
    This tutorial will take you through setting up an Atlas Cluster, establishing an AWS Lambda function, connecting the cluster to Lambda, and loading in/reading back specific information. Watch through the end for information on utilizing MongoDB's Aggregation Pipeline structure.
    🔗 Resources 🔗
    ✅ For an article format of this video along with code samples, please view our Developer Center → mdb.link/article--ZSKyLspT3Q
    ✅ Connect with Anaiya → / anaiyaraisinghani
    ✅ View more of Anaiya's content → www.mongodb.com/developer/sea...
    ------
    Don't forget to like, share, and subscribe for more awesome tutorials! 🙌
    ✅ Subscribe to our channel → mdb.link/subscribe
  • РазвлеченияРазвлечения

Комментарии • 10

  • @MongoDB
    @MongoDB  9 месяцев назад +1

    ✅ Sign-up for a free cluster at → mdb.link/free--ZSKyLspT3Q
    ✅ Written article with code samples → mdb.link/article--ZSKyLspT3Q

  • @ffs0
    @ffs0 8 дней назад +1

    seems too easy the way she is doing

  • @moritzvoss3056
    @moritzvoss3056 Месяц назад +1

    Great video!

  • @mohammedregragui9631
    @mohammedregragui9631 4 месяца назад +1

    the best tutorial, thank you

  • @jacksondahl8584
    @jacksondahl8584 9 месяцев назад +4

    Wow! This is exactly the tutorial I was looking for, thank you! Wonderfully made.

    • @MongoDB
      @MongoDB  9 месяцев назад

      Glad it was helpful!

    • @katiechorao919
      @katiechorao919 8 месяцев назад +1

      you took the words out of my mouth!

  • @alhassanmumin1935
    @alhassanmumin1935 3 месяца назад +1

    I love this

  • @ofir952
    @ofir952 8 месяцев назад +1

    Thank you for the tutorial! Could you explain why it takes so long to fetch data? Half a second is too long for my use case, I would love to hear a solution for that.

    • @anaiyaraisinghani3448
      @anaiyaraisinghani3448 26 дней назад

      You're welcome! Yeah, there can actually be a number of reasons for this...the ones off the top of my head for this specific tutorial are: starting up the connection after not using it for a while (a cold start), making sure your MongoDB cluster is in the same region as your lambda function, and personal code optimization (for the sake of the tutorial I didn't optimize my code as well as I should have, but I wanted to ensure watchers understand what's happening step by step).
      Hopefully some of these reasons can help you out with your use case. :)