SYNC WORKFLOWS WITH AWS STEP FUNCTIONS AND API GATEWAY - Orchestrate your distributed applications

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024

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

  • @davidvergison5955
    @davidvergison5955 3 года назад +2

    I wish i had seen this video the day it was released !
    It's an amazing feature, thanks for the video !

  • @dalejor10
    @dalejor10 2 года назад +1

    i like your content. I'm here from the spanish channel. Thanks so much and continue sharing this kind of content! You are the best!

  • @garywaddell6309
    @garywaddell6309 7 месяцев назад +1

    Hi Marcia, I love the workflow designer for step functions. However I’ve had nothing but struggles using mapping templates to pass a cognito auto token to the step function / state machine using the synchronous api gateway approach you mentioned. Have you come across this issue? The VTL is very frustrating to work with 😞

    • @Drie214
      @Drie214 7 месяцев назад

      im with the same problem, have you found a solution?

    • @garywaddell6309
      @garywaddell6309 7 месяцев назад

      @@Drie214 unfortunately I still have not, I can get the mapping template to show up with the auth token but it never seems to make its way to the step functions and therefore the lambdas. ☹️

  • @sudiptendupal7254
    @sudiptendupal7254 3 года назад

    This is an awesome example, Marcia !!! I am an avid follower of your videos.

  • @effearts44
    @effearts44 2 года назад +1

    Thank you, this is really helpful!!!

  • @davidchoqueluqueroman623
    @davidchoqueluqueroman623 2 года назад

    Hello, Thank you for the video. Why the function is so slow? (At the first invocation). Could it be resolved with map or parallel?

  • @DTraub
    @DTraub 3 года назад +1

    That's really helpful, thanks!

  • @effearts44
    @effearts44 2 года назад

    Is it possible to use REST API? Rather than HTTP API?

  • @VincentFulco
    @VincentFulco 3 года назад +1

    Any personal suggestions/thoughts on the various ways to protect an httpapi?

    • @foobar_codes
      @foobar_codes  3 года назад

      Check this playlist on API Gateway authorizers ruclips.net/p/PLGyRwGktEFqfOPYM2Rsx7RmOUPH3_kY0-

  • @FerreiraLucaas
    @FerreiraLucaas 2 года назад

    Hey Marcia, great content, helped our team a lot! Can you help on this issue? I mean, how can you change this output to a "more friendly or HTTP response" style?

  • @michal_szymanski
    @michal_szymanski 3 года назад

    Very cool feature. We thought to use step function in our project but lack of synchronous calls we use 'traditional solution'. BTW in our solution we have two Lambda functions. First Lamda that receives data from API Gateway endpoints and put to the SQS Fifo queue and waits, second Lambda consumes sqs messages and perform operations on user accounts data. When second lambda finish processing it send data using Redis to first Lambda, and first lambda returns data to client. We have made it in such way to serialize actions on account level (w must be sure that no two operations on accounts take place in the same time) . I wounder how we can simplify using step-function or other aws service
    (and speed up, because each endpoint because using SQS and two Lambdas takes 100-400ms per call) our solution? Any thoughts?

    • @lmb_codes
      @lmb_codes 3 года назад

      I’m not sure if I understood your comment, but isn’t the entire video all about synchronous step functions? (Express step functions). As for the serialization problem, maybe you could use account-level locks (using standard databases) that one of the step has to acquire before being allowed to proceed. (Careful though, be sure to release that lock)

  • @waleedahmad2012
    @waleedahmad2012 3 года назад +1

    would appreciate if you can do vid about writing cloudformation file

  • @learnwithvector
    @learnwithvector 2 года назад +1

    Thanks @foobarServices
    This really helped