Idempotency in APIs: you should be aware of this!

Ғылым және технология

Idempotency is an important aspect of designing APIs and how they interact with other microservices or external modules. It's definitely a best practice to consider when building an API. It's used to avoid critical errors in the system and keep the business logic in tact.
Consider becoming a member of the channel by joining me ❤️
/ @softwaredeveloperdiaries
🙌 Become my Patreon and get exclusive perks: / softdevdiaries
💼 Follow me on LinkedIn and drop me a message if you'd like: / gusgadirov
💻 Also, let's connect on GitHub: github.com/gusgad
📚 Resources:
A full article on Idempotency: www.baeldung.com/cs/idempoten...
And don't forget to subscribe for more videos like this 😊

Пікірлер: 34

  • @TannerBarcelos
    @TannerBarcelosАй бұрын

    The best video explanation of this very critical issue high scale, highly reliable systems face. Subscribed!

  • @onhazrat
    @onhazrat8 ай бұрын

    🎯 Key Takeaways for quick navigation: 00:55 🔄 Item potency means the same operation produces the same result, crucial for consistent API behavior. 03:15 📝 Pay attention to the "post" and "patch" HTTP methods, as they can create or modify data, demanding careful handling of item potency. 04:41 🔑 The solution to item potency issues involves using an item potency key (X-Item-Poy-ID) to ensure requests aren't processed multiple times. 05:08 💾 Store the item potency key in a memory system, such as a database or cache, to manage consistent API behavior. 06:58 ✅ Attach the item potency key to your requests, preventing the same request from being processed twice. Made with HARPA AI

  • @CodingWithAuryn
    @CodingWithAuryn5 ай бұрын

    Very helpful!! Thank you for this nice explanation!

  • @rajaerobinson
    @rajaerobinson8 ай бұрын

    Great video!

  • @mansoormasoudifard8624
    @mansoormasoudifard862416 күн бұрын

    I learned a lot 👌

  • @cybersholt
    @cybersholt8 ай бұрын

    Really interesting topic, been doing web development for 20 years and luckily never had anything like uber eats had! But the video was done really well and am looking forward to more from ya. Keep up the great work man

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    That's definitely for the best! :D Thanks mate!

  • @developerfoe
    @developerfoe8 ай бұрын

    amazing video

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    Thanks!

  • @cariyaputta
    @cariyaputta8 ай бұрын

    So it's equivalent to the concept of pure function?

  • @positivity1016

    @positivity1016

    8 ай бұрын

    Good point, sounds similar

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    It is 🙂

  • @abdrnasr
    @abdrnasr8 ай бұрын

    Great video! Don't you think that storing this temp value on the client is not the most secure way? A client could easily clear cookie. If there is a mechanism in the backend that deals with duplicate requests, then this is a different story.

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    Good question! The user should be somewhat aware that if they face an error upon let's say, clicking the "Pay" button and clear their cookies right after that, then that's not in their best interest and can lead to unexpected consequences such as paying twice. At least that's how I see it :)

  • @softwarewitchtmp
    @softwarewitchtmp7 ай бұрын

    Should idempotency keys be generated when a user clicks on an order button or when the web page dom content is loaded? I'm asking because you generated it outside of the scope of your request function (which appears to be the second approach).

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    7 ай бұрын

    Great question! I would say it's debatable, but I'd suggest to generate it when the user clicks an order button, as it then aligns with the user intent. Meaning we won't be generating anything if the user leaves the page without actually ordering anything. And my bad, I didn't depict it clearly in the video ;)

  • @rahulbabbar555
    @rahulbabbar5552 ай бұрын

    Hey! nice explanation.. Which software you are using to demonstrate this..

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    2 ай бұрын

    Eraser.io :)

  • @viraj_singh
    @viraj_singh8 ай бұрын

    When I was in my university, I ordered so many free food at the time of the glitch. Later on I was banned from uber eats and then uber and I just made a new uber account ande moved on. :) Great video by the way.

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    Hahah nice one!

  • @josecarlostoscano5837
    @josecarlostoscano58378 ай бұрын

    Would repeated calls of the function ‘makeRequest’ have different values for the idempotency key? If they do, then the api would process both of them, wouldn’t it?

  • @juraev0056

    @juraev0056

    8 ай бұрын

    Yes, `makeRequest` makes a new request. You should make retry requests with previous failed request's idempotent key. You can see he's handling retries with `shouldRetry`

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    No, the idempotency key is the same for all retries for a particular user. The client can save the key in the SessionStorage while the user is still on the "Order" page and delete it after the order has been placed successfully.

  • @kazuar87
    @kazuar878 ай бұрын

    6:37 what kind of cache? The automatic subtitle does not get it either... :)

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    Redis 😛

  • @AhmedAli-jx9ie
    @AhmedAli-jx9ie8 ай бұрын

    how exactly the request will be retried with the same idempotency key?

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    The frontend can save the idempotency key in the SessionStorage as soon as the customer lands on the "Order" page and use it for every retry. Upon a success, the frontend clears the key.

  • @M0HCT3R
    @M0HCT3R8 ай бұрын

    It would be interesting to see the solution for backend

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    Hope this is somewhat of a help :) medium.com/dsc-hit/creating-an-idempotent-api-using-node-js-bdfd7e52a947

  • @verb0ze
    @verb0ze5 ай бұрын

    I don't know if I agree with not needing to concern ourselves with idempotency for other methods. I'd say it depends on the API. There are some cases where DELETE for example should be idempotent, like when deleting an item from a doing cart (and setting the total cost for the remainder of the cart

  • @MrMashyker

    @MrMashyker

    15 күн бұрын

    Exactly! HTTP methods are just conventions: devs are free to implement them however they like.

  • @EmmanuelOdii80
    @EmmanuelOdii808 ай бұрын

    Hey, Great video. Meanwhile, I'd love to know if tou use Nest js :)

  • @SoftwareDeveloperDiaries

    @SoftwareDeveloperDiaries

    8 ай бұрын

    Thanks mate! No I haven’t used it yet, do you? 🙂

  • @EmmanuelOdii80

    @EmmanuelOdii80

    8 ай бұрын

    @@SoftwareDeveloperDiaries It's been the go-to for my SaaS products :)

Келесі