Harsh Daiyablog.harshdaiya.com路Jan 11, 2023FeaturedIdempotency in Data pipelines - OverviewIdempotency is an important concept in data engineering, particularly when working with distributed systems or databases. In simple terms, an operation is said to be idempotent if running it multiple times has the same effect as running it once. This...Daniil Korbut and 2 others are discussing this3 people are discussing thisDiscuss路31 likes路489 readsPython
Nextwebbnextwebb.hashnode.dev路Jan 4, 2023Why is idempotency very critical in APIs?Idempotence is an essential concept in APIs; it allows clients to make similar requests without causing problems or changing the system's state馃挕. For instance, consider an API that has a "create user" endpoint. Suppose this endpoint is not idempoten...Discuss路10 likes路167 readsAPI Design
Manjunath Reddymanju.dev路Jan 1, 2023REST API: How to avoid duplicate resource creation on concurrent requests.Source: http://www.juimg.com/shiliang/201904/anniutubiao_1768500.html As anyone working as a software engineer, we all might have come across dealing with API's in our lives. It's easy to consume them, however, designing one requires lots of experien...Discuss路1 like路1.9K readsREST API
Sofwan A. LawalProblog.sofwancoder.com路Nov 7, 2022Idempotency In APIs: Planning for UncertaintyIdempotency is a property that can be applied to operations, algorithms, and code. In software engineering, it refers to the ability of an operation to be performed multiple times on the same input without resulting in an unnatural state. An idempote...Discuss路764 readsidempotence
Kai NiemiProblog.cloudneutral.se路Oct 19, 2022Designing Idempotent REST APIsOverview This article outlines common techniques for implementing REST API idempotency using the Spring Boot stack, or to be specific: idempotent POST methods. The POST method is not safe or idempotent by specification, yet it's frequently used when...Discuss路107 readsSpringboot