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

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ • 21

  • @garywaddell6309
    @garywaddell6309 9 місяців тому +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 9 місяців тому

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

    • @garywaddell6309
      @garywaddell6309 9 місяців тому

      @@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. ☹️

  • @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!

  • @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 !

  • @sudiptendupal7254
    @sudiptendupal7254 3 роки тому

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

  • @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?

  • @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 ua-cam.com/play/PLGyRwGktEFqfOPYM2Rsx7RmOUPH3_kY0-.html

  • @effearts44
    @effearts44 2 роки тому +1

    Thank you, this is really helpful!!!

  • @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)

  • @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?

  • @waleedahmad2012
    @waleedahmad2012 3 роки тому +1

    would appreciate if you can do vid about writing cloudformation file

  • @DTraub
    @DTraub 3 роки тому +1

    That's really helpful, thanks!

  • @learnwithvector
    @learnwithvector 2 роки тому +1

    Thanks @foobarServices
    This really helped