I would like to know if there are any ways one can perform 'locking' on an asp.net web application which is deployed on multiple servers, using a distributed server like MySQL Cluster.

For example, take the classic example of updating an account balance. No two requests should update the same account balance at the same time. For example:

Member 1 account balance is 100.

  • Request A accesses Server 1 to add 100 to the balance of member 1
  • Request B accesses Server 2 to add 50 to the balance of member 1

Thus request A updates the balance from 100 to 200 and saves.
Request B updates the balance to 150, and saves.

These all happen exactly at the same time, thus losing the information as the end result should have been 250.

How can one lock such that Request B would have to wait until Request A finishes, until it retrieves the balance. If it was a single process, this could be implemented by an application-wide lock. However, since there are multiple independent processes, this wouldn't work as for Server 1 it is not locked, and neither Server 2

Any ideas or best-practices how this can be done?

link|improve this question

56% accept rate
This is a typical problem in modern cloud-based applications. It really depends on the database. If your database support transactions, use them! If you want to get the general idea, you should probably check out the 'Two-phase commit-protocol' as a start: en.wikipedia.org/wiki/Two-phase_commit_protocol – Nappy Dec 21 '11 at 14:50
feedback

1 Answer

That's what transactions are for.

Wrap the operations that need to be atomic in a TransactionScope to enrol them in an explicit transaction.

This doesn't completely resolve the issue of stale data, as once a transaction completes if the other concurrent user is using the old value to update, you still have a problem.

The solution is to use a field on the table that changes whenever the row changes - in SQL Server 2008 this is the rowversion type.

You only update the row if the rowversion has not changed - if it has, you notify the user and bring back the current values without making an update.

link|improve this answer
I use NHibernate as an ORM for the solution. Is there anyway you can make a check so that if the 'version' of the object has changed, it throws an error, which the application can then capture, and basically restart the process, until the version has not yet changed? – Karl Cassar Dec 21 '11 at 15:51
@KarlCassar - I don't know nHibernate enough to tell you. – Oded Dec 21 '11 at 15:55
feedback

Your Answer

 
or
required, but never shown

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