I am reading the official GAE documentation on transactions and I can't understand when a ConcurrentModificationException is thrown.

Look at one of the examples which I am copy-pasting here:

int retries = 3;
while (true) {
    Transaction txn = datastore.beginTransaction();
    try {
        Key boardKey = KeyFactory.createKey("MessageBoard", boardName);
        Entity messageBoard = datastore.get(boardKey);

        long count = (Long) messageBoard.getProperty("count");
        ++count;
        messageBoard.setProperty("count", count);
        datastore.put(messageBoard);

        txn.commit();
        break;
    } catch (ConcurrentModificationException e) {
        if (retries == 0) {
            throw e;
        }
        // Allow retry to occur
        --retries;
    } finally {
        if (txn.isActive()) {
            txn.rollback();
        }
    }
}

Now, all the writes to the datastore (in this example) are wrapped under a transaction. So why would a ConcurrentModificationException be thrown?

Does it happen when some other code which is not wrapped in a transaction updates the same entity that is being modified by the above code? If I ensure that all code that updates an Entity is always wrapped in a transaction, is it guaranteed that I won't get a ConcurrentModificationException?

link|improve this question

80% accept rate
feedback

2 Answers

It seems that you're doing what they suggest you shouldn't do: http://code.google.com/appengine/docs/java/datastore/transactions.html#Uses_for_Transactions

Warning! The above sample depicts transactionally incrementing a counter only for the sake of simplicity. If your app has counters that are updated frequently, you should not increment them transactionally, or even within a single entity. A best practice for working with counters is to use a technique known as counter-sharding.

Perhaps the above warning doesn't apply, but what follows after it seems to hint at the issue you're seeing:

This requires a transaction because the value may be updated by another user after this code fetches the object, but before it saves the modified object. Without a transaction, the user's request uses the value of count prior to the other user's update, and the save overwrites the new value. With a transaction, the application is told about the other user's update. If the entity is updated during the transaction, then the transaction fails with a ConcurrentModificationException. The application can repeat the transaction to use the new data.

In other words: it seems that somebody is modifying your entity without using a transaction at the same time that you're updating the same entity with a transaction.

Note: In extremely rare cases, the transaction is fully committed even if a transaction returns a timeout or internal error exception. For this reason, it's best to make transactions idempotent whenever possible.

A fair warning: I'm not familiar with the library, but the above quotes were taken from the documentation showing sample transactions (which seems identical to what you've posted in the original question).

link|improve this answer
That warning is for an entirely different reason: performance. In the context of a transaction, it is a perfectly valid example. – HRJ Jan 3 at 21:34
HRJ, in the paragraph after the warning it also states that the transaction can fail with a ConcurrentModificationException if the entity is updated during the transaction. I presume that this is what is happening in this case. – Lirik Jan 3 at 21:36
thanks for trying to answer the question. I already know what's in the documentation. I need an answer without assumptions. – HRJ Jan 4 at 3:14
@HRJ, without seeing/knowing what else could be modifying your entity, I would say that all we can have is assumptions. Anyway, good luck. – Lirik Jan 4 at 5:31
feedback
up vote 0 down vote accepted

I found the answer on the GAE mailing list.

I had a misconceived notion of how transactions work in GAE. I had imagined that beginning a transaction will lock out any concurrent updates to the datastore until the transaction commits. That would have been a performance nightmare as all updates would block on this transaction and I am happy that this isn't the case.

Instead, what happens is, the first update wins, and if a collision is detected in subsequent updates, then an exception is thrown.

This surprised me at first, because it means many transactions will need a retry logic. But it seems similar to the PostgreSQL semantics for "serializable isolation" level, though in PostgreSQL you also have the option to lock individual rows and columns.

link|improve this answer
How is that different from the second paragraph of the quote I provided? – Lirik Jan 4 at 16:37
Lirik, it isn't very different from the quote you included. But your summary below the quote is different from mine, and there are some assumptions and unrelated quotes in the answer. Hence, I made a fresh answer while clarifying my own confusions. Thanks for participating in this quest. – HRJ Jan 4 at 19:54
Well, the important thing is that you have an answer :)... – Lirik Jan 4 at 20:41
feedback

Your Answer

 
or
required, but never shown

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