Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is an idempotent operation?

share|improve this question
9  
I know how to google/wikipedia the answer. The point of this question is to put the best answer in stackoverflow. – Will Jul 3 '09 at 1:07
3  
I don't blame you for not finding it though. I only knew about it because I answered it. – Blorgbeard Jul 3 '09 at 1:13
2  
And lo, it's now the second result on Google for "idempotent". Well done! – Cosmic Flame Jan 24 at 12:12

8 Answers

up vote 93 down vote accepted

In computing, an idempotent operation is one that has no additional effect if it is called more than once with the same input parameters.

Pure functions (those whose return value only depends on the input parameters) are always idempotent (Python syntax examples):

def sq(x):
    return x * x

Functions that only set a value are idempotent:

g_x = 5

def set_x(x):
    global g_x
    g_x = x

However, functions that do something like append to a global list are not idempotent:

a = []

def add_x(x):
    a.append(x)

Idempotent operations are often used in the design of network protocols, where a request to perform an operation is guaranteed to happen at least once, but might also happen more than once. If the operation is idempotent, then there is no harm in performing the operation two or more times.

It is somewhat unfortunate that in mathematics, the use of idempotent is slightly different. See the Wikipedia article on idempotence for more information.

share|improve this answer
2  
The mathematical definition of idempotent is only superficially different. If you realize that an idempotent function with side effects also has an implicit parameter of the state of the interpreter/machine, then it is clear that the function is also idempotent in the strict mathematical sense. – user57368 Jul 3 '09 at 2:25
2  
@unknown: That's true, but in the computing sense you don't usually talk about functions taking as a parameter the state of the whole world (unless you're working in Haskell!). So by drawing the natural comparison between "computing function" and "mathematical function", the use of idempotent looks different. – Greg Hewgill Jul 3 '09 at 2:28
4  
The concept is, however, fairly common, and one that all programmers should understand. For example, in object oriented programming, methods have a pointer to "this" as an implicit parameter, which is in strict OOP languages like Java the full extent of the non-local variable state that can be modified directly (ie. without another method call). – user57368 Jul 3 '09 at 2:37
2  
That's a good point about the implicit "this" parameter and the object state that implies. – Greg Hewgill Jul 3 '09 at 2:53
6  
This answer is incorrect: pure functions are not always idempotent. square(square(x)) does not equal square(x) so square is not idempotent. – mikera Mar 5 '12 at 4:39
show 4 more comments

no matter how many times you call the operation the result will be the same.

share|improve this answer
2  
I've heard idempotent defined as either or both of the below: 1) For a given set of inputs it will always return the same output. 2) Does not produce any side effects. My question is, if a function conforms to #1, but not #2, because it results in a side effect unrelated to the computation (logs the request to a data store, for example), is it still considered idempotent? – Keith Bennett Jun 28 '12 at 22:32
The result of calling an operation must include the state of the system, so if the operation has some cumulative side effect it is not idempotent; however, if the side effect leaves the system in the same state no matter how many times the operation is called, then it may be idempotent. – Robert Jul 17 '12 at 21:45

An idempotent operation can be repeated an arbitrary number of times and the result will be the same as if it had been done only once. In arithmetic, adding zero to a number is idempotent.

Idempotence is talked about a lot in the context of "RESTful" web services. REST seeks to maximally leverage HTTP to give programs access to web content, and is usually set in contrast to SOAP-based web services, which just tunnel remote procedure call style services inside HTTP requests and responses.

REST organizes a web application into "resources" (like a Twitter user, or a Flickr image) and then uses the HTTP verbs of POST, PUT, GET, and DELETE to create, update, read, and delete those resources.

Idempotence plays an important role in REST. If you GET a representation of a REST resource (eg, GET a jpeg image from Flickr), and the operation fails, you can just repeat the GET again and again until the operation succeeds. To the web service, it doesn't matter how many times the image is gotten. Likewise, if you use a RESTful web service to update your Twitter account information, you can PUT the new information as many times as it takes in order to get confirmation from the web service. PUT-ing it a thousand times is the same as PUT-ing it once. Similarly DELETE-ing a REST resource a thousand times is the same as deleting it once. Idempotence thus makes it a lot easier to construct a web service that's resilient to communication errors.

Further reading: RESTful Web Services, by Richardson and Ruby (idempotence is discussed on page 103-104), and Roy Fielding's PhD dissertation on REST. Fielding was one of the authors of HTTP 1.1, RFC-2616, which talks about idempotence in section 9.1.2.

share|improve this answer

Idempotence means that applying an operation once or applying it multiple times has the same effect.

Examples:

  • Multiplication by zero. No matter how many times you do it, the result is still zero.
  • Setting a boolean flag. No matter how many times you do it, the flag stays set.
  • Deleting a row from a database with a given ID. If you try it again, the row is still gone.

For pure functions (functions with no side effects) then idempotency implies that f(x) = f(f(x)) = f(f(f(x))) = f(f(f(f(x)))) = ...... for all values of x

For functions with side effects, idempotency furthermore implies that no additional side effects will be caused after the first application. You can consider the state of the world to be an additional "hidden" parameter to the function if you like.

Note that in a world where you have concurrent actions going on, you may find that operations you thought were idempotent cease to be so (for example, another thread could unset the value of the boolean flag in the example above). Basically whenever you have concurrency and mutable state, you need to think much more carefully about idempotency.

Idempotency is often a useful property in building robust systems. For example, if there is a risk that you may receive a duplicate message from a third party, it is helpful to have the message handler act as an idempotent operation so that the message effect only happens once.

share|improve this answer

An idempotent operation leaves everything in the same state if you call it once or many times, provided you pass in the same parameters.

share|improve this answer

An idempotent operation over a set leaves its members unchanged when applied one or more times.

It can be a unary operation like absolute(x) where x belongs to a set of positive integers. Here absolute(absolute(x)) = x.

It can be a binary operation like union of a set with itself would always return the same set.

cheers

share|improve this answer

It is any operation that every nth result will result in an output matching the value of the 1st result. For instance the absolute value of -1 is 1. The absolute value of the absolute value of -1 is 1. The absolute value of the absolute value of absolute value of -1 is 1. And so on.

See also: When would be a really silly time to use recursion?

share|improve this answer

Idempotent Operations: Operations that have no side-effects if executed multiple times.
Example: An operation that retrieves values from a data resource and say, prints it

Non-Idempotent Operations: Operations that would cause some harm if executed multiple times. (As they change some values or states)
Example: An operation that withdraws from a bank account

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.