Concepts of Locking in Mysql Database
Mysql Database is a RDBMS which also support transactions. Transactions are guaranteed only through ACID property. Following are the full form of ACID
A- Automicity (Any Transction within the database should follow “Do All or Do Nothing” )
C- Consistency (DB should ensure db process should perform one state to another state consistently)
I- Isolation (No transaction shoul interfare with another while running)
D- Duration (Once tranaction has been committed it will remain and get affected in whold db)
Transactions can be implemented successfully through the help of “Locks”. Without locks a change is made by one transaction could be overwritten by another transaction that executes at same time.So locking is the best way to implement transaction within database.
There are two classes of Locks
a) Read Locks (Shared Locks): As the name suggest Read Lock get applied when resource provide consistent read by block writing to same resource. With the help of this lock we make sure that read process shouldn’t get any difficulty. This lock is also known as shared because many client can implement same lock at the same time. If one read lock is there then no write lock can’t be applied on same resource.
b) Write Lock (Exclusive Locks): This lock applies on the resource when resource is about to modify . At the time of editing any resource write lock occurs so that until one editing process wouldn’t get completed then no other write lock can be applied on same. This will remove any chance of duplicate / data corruption.
Priority of Read and Write Locks
Write lock has higher priority than read lock. Any new lock is guaranteed in following manner
>> Grant the lock for which are waiting in the write lock queue
>> In case of no lock request on resource then grant the read lock first if any
Chandra Shekhar
Latest posts by Chandra Shekhar (see all)
- Best practices for micro service design - January 23, 2022
- Spring Boot - January 23, 2022
- Java - January 23, 2022
Recent Comments