What is Locking in MySQL (or any RDBMS) and when would you use it? A Layman explanation with a Example would be great!
|
closed as not constructive by George Stocker♦ Jul 19 '12 at 2:02
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
We have a joint bank account with a balance of $200 I go to the ATM and put my card into the machine, the machine checks that I have a balance of $200 Meanwhile, you go into the bank and ask for $50, the teller brings up your account and confirms that you have the money. I request a withdrawal of $200, the machine counts my money gives me $200 and sets my balance at $0 The teller counts your money and gives you the $50, the system then updates the balance on the account as $150 ($200 - $50 withdrawl). So now we have $250 cash and $150 left in the account. $200 profit. The database should have used locks to prevent both transactions occuring at the same time. The problem is if you handle every transaction in that way then we would lose concurrency and performance would suffer, so there are different http://en.wikipedia.org/wiki/Isolation_%28database_systems%29 You should learn these and understand the scenarios where they are applicable. |
||||
|
|
|
Locking can be crucial to avoid two users modifying data at the same time. You may think that's unlikely, but depending on the application, there is a significant risk if the same data is frequently changed by different users. Imagine the following situation without using locks: John opens his screen (he doesn't know he's using a database, he is only an end user who is looking at a pretty screen), modifies some data, and then hits "Save". Let's say John open the screen at 9:30 and then saves the data at 9:32. However, Mary opened exactly the same screen and the same record at 9:29. She saw at that time the same data that John did at 9:30. Then, she updates the record, and hits "Save" at 9:31. What data was saved? John's or Mary's? Mary happily keeps working on other records, and when she comes back later to open the record again, she sees that her changes were lost, and she sees John's changes instead!! Be aware that locking has to be used wisely to prevent unexpected side-effects. For example, let's say that your program locks a record every time somebody opens it make a change. What happens if John locks the record, and leaves his session screen open to have lunch or he looses his connection? The lock can remain there, locked and unchangeable, for a long time, while prohibiting everybody else from changing (or even looking at) that record. Other consideration may be performance, because the time for the database to lock and unlock records may become noticeable for a large number of transactions. Understanding locking is crucial to maintain happy users and data integrity. Please look at the documentation. |
|||||||||
|
|
A few days ago I answered a question on SO and gave an example which demonstrates a situation where locking allows multiple users to concurrently insert rows in a table with an incrementing Consider the following schema as an example:
Then we can do the following:
The Without committing the transaction, we start another separate session (simulating a concurrent user), and do the same:
The database will wait until the lock set in the previous session is released before running this query. Therefore switching to the previous session, we can insert the new row and commit the transaction:
After the first session commits the transaction, the lock will be lifted, and the query in the second session is returned:
Note that without locking, the second session would have returned immediately, but with |
||||
|
|