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

I have there methods: ReserveOrder(id), AcceptOrder(id), CancelOrder(id)

Each of it runs transaction which:

  1. Selects order by id and checks is it in good state.
  2. Additional selects from other tables are performed based on business logic, but these selects may incur larger sets of data.
  3. Additional select is performed based caller to check his balance value and update it (increase or decrease)
  4. Modifies order's state performing update.
  5. Logs this action (insert operation).
  6. Send notification to remote system (this action can't be roll-backed, so needs to be the last one).

If all steps (update of order state, insert operation to log action and send notification to remote system) competes without error, transaction should complete or all changes in db should be roll-backed.

I was doing these actions using TransactionScope:

using (var db = new eTaxiEntities())
           {
            TransactionOptions to = new TransactionOptions() { IsolationLevel = IsolationLevel.Serializable, Timeout = new TimeSpan(0, 0, 20) };
            using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, to))
            {
                //all these steps
            }
        }

But after number of users increased and these methods started do get more and more concurrent calls on the same orders I started to get errors:

Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.    at System.Data.SqlClient.SqlConnection.OnError

The underlying provider failed on Open. at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf

I this the couse is not optimal use of transactions. I need to lock only certain rows by id, but using TransactionScope and IsolationLevel.Serializable it perhaps locks much more than needed.

In Entities I set Concurrency Mode to Fixed of order status and users balance columns so those alone should be enough to prevent unexpected behaviour (e.g. accepting order twice by two concurrent users), but I still need to use transaction because every change should be roll-back if anything fails.

Could you please advice how to optimize it?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.