vote up 3 vote down star
4

If there a way to protect against concurrent modifications of the same data base entry by two or more users?

It would be acceptable to show an error message to the user performing the second commit/save operation, but data should not be silently overwritten.

I think locking the entry is not an option, as a user might use the "Back" button or simply close his browser, leaving the lock for ever.

flag

50% accept rate
If one object can be updated by multiple, concurrent users, you may have a bigger design issue. It might be worth thinking about user-specific resources or separating processing steps into separate tables to prevent this from being an issue. – S.Lott Nov 26 '08 at 17:03

4 Answers

vote up 0 vote down

To be safe the database needs to support transactions.

If the fields is "free-form" e.g. text etc. and you need to allow several users to be able to edit the same fields (you can't have single user ownership to the data), you could store the original data in a variable. When the user committs, check if the input data has changed from the original data (if not, you don't need to bother the DB by rewriting old data), if the original data compared to the current data in the db is the same you can save, if it has changed you can show the user the difference and ask the user what to do.

If the fields is numbers e.g. account balance, number of items in a store etc., you can handle it more automatically if you calculate the difference between the original value (stored when the user started filling out the form) and the new value you can start a transaction read the current value and add the difference, then end transaction. If you can't have negative values, you should abort the transaction if the result is negative, and tell the user.

I don't know django, so I can't give you teh cod3s.. ;)

link|flag
vote up 12 vote down

Actually, transactions don't help you much here ... unless you want to have transactions running over multiple HTTP requests (which you most probably don't want).

What we usually use in those cases is "Optimistic Locking". The Django ORM doesn't support that as far as I know. But there has been some discussion about adding this feature.

So you are on your own. Basically, what you should do is add a "version" field to your model and pass it to the user as a hidden field. The normal cycle for an update is :

  1. read the data and show it to the user
  2. user modify data
  3. user post the data
  4. the app saves it back in the database.

To implement optimistic locking, when you save the data, you check if the version that you got back from the user is the same as the one in the database, and then update the database and increment the version. If they are not, it means that there has been a change since the data was loaded.

You can do that with a single SQL call with something like :

UPDATE ... WHERE version = 'version_from_user';

This call will update the database only if the version is still the same.

link|flag
This same question also appeared on Slashdot. The Optimistic Locking you suggest was also proposed there, but explained a bit better imho: hardware.slashdot.org/comments.pl?sid=1381511&… – hopla Sep 29 at 9:35
Also note that you do want to use transactions on top of this, to avoid this situation: hardware.slashdot.org/comments.pl?sid=1381511&… Django provides middleware to automatically wrap every action on the database in a transaction, starting from the initial request and only committing after a succesfull response: docs.djangoproject.com/en/dev/… (mind you: the transaction middleware only helps to avoid the above problem with optimistic locking, it does not provide locking by itself) – hopla Sep 29 at 12:12
vote up 0 vote down

Another thing to look for is the word "atomic". An atomic operation means that your database change will either happen successfully, or fail obviously. A quick search shows this question asking about atomic operations in Django.

link|flag
I don't want to perform a transaction or locking across multiple requests, as this can take any length of time (and may never finish at all) – Ber Nov 26 '08 at 10:57
If a transaction starts, it has to finish. You should only lock the record (or start the transaction, or whatever you decide to do) after the user clicks "submit", not when they open the record for viewing. – Harley Nov 26 '08 at 11:01
Yes, but my problem is different, in that two users open the same form and then they both commit their changes. I don't think locking is the solution for this. – Ber Nov 26 '08 at 16:24
You're right, but the problem is there is no solution for this. One user gets to win, the other gets a fail message. The later you lock the record the less problems you'll have. – Harley Nov 26 '08 at 21:56
I agree. I totally accept the fail message for the other user. I am looking for a good way to detect this case (which I expect to be very rare). – Ber Nov 26 '08 at 22:58
vote up 0 vote down

You should probably use the django transaction middleware at least, even regardless of this problem.

As to your actual problem of having multiple users editing the same data... yes, use locking. OR:

Check what version a user is updating against (do this securely, so users can't simply hack the system to say they were updating the latest copy!), and only update if that version is current. Otherwise, send the user back a new page with the original version they were editing, their submitted version, and the new version(s) written by others. Ask them to merge the changes into one, completely up-to-date version. You might try to auto-merge these using a toolset like diff+patch, but you'll need to have the manual merge method working for failure cases anyway, so start with that. Also, you'll need to preserve version history, and allow admins to revert changes, in case someone unintentionally or intentionally messes up the merge. But you should probably have that anyway.

There's very likely a django app/library that does most of this for you.

link|flag
This is also Optimistic Locking, like Guillaume proposed. But he seemed to get all the points :) – hopla Sep 29 at 9:37

Your Answer

Get an OpenID
or

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