Skip to content

Concurrency Control Locking manages concurrent transactions using pessimistic locking, which locks records to prevent conflicts, and skip locking, which skips locked records to improve processing efficiency. These mechanisms ensure data consistency while optimizing performance in high-concurrency scenarios.

License

Notifications You must be signed in to change notification settings

seyyedBagherMusavi/concurrency-control-locking

Repository files navigation

Concurrency Control Locking in Spring Boot πŸš€

This project demonstrates pessimistic locking and skip locking for concurrency control in a Spring Boot application using MySQL and Docker Compose. It processes tasks by selecting 1,000 unprocessed tasks at startup and handling them in parallel 10 at a time.

πŸ“Œ How It Works

  1. At startup, the system fetches 1,000 unprocessed tasks from tbl_process.
  2. Parallel processing begins, handling 10 tasks at a time.
  3. Pessimistic Locking ensures no two workers process the same task.
  4. Skip Locking allows efficient handling of remaining tasks.

πŸ“Š Concurrency Workflow

+-------------------------------+
|         Unprocessed Tasks     |
|        (Selected 1000)        |
+-------------------------------+
           || (Parallel 100 workers)
           \/
+-------------------------------+
| Worker 1  | Worker 2 | ... 100 |
| (Locks row & processes task) |
+-------------------------------+
           || (Skip Locked)
           \/
+-------------------------------+
|        Remaining Tasks        |
|     (Only unlocked tasks)     |
+-------------------------------+

πŸ›  Tech Stack

  • Spring Boot 3
  • Spring Data JPA
  • MySQL (Docker)
  • Pessimistic Locking (@Lock(PESSIMISTIC_WRITE))
  • Skip Locking (FOR UPDATE SKIP LOCKED)

πŸš€ Running the Project

1️⃣ Clone the Repository

git clone https://github.com/your-repo/concurrency-control-locking.git
cd concurrency-control-locking

2️⃣ Start MySQL with Docker Compose

docker-compose up -d

βœ… This will create:

  • A MySQL database named task_db.
  • A table tbl_process with sample processed and unprocessed tasks.

3️⃣ Build & Run the Spring Boot Application

mvn clean install
mvn spring-boot:run

πŸ”Ή The system fetches 1,000 tasks and starts processing 10 at a time using parallel threads.


πŸ—„ Database Schema (tbl_process)

CREATE TABLE tbl_process (
    id BIGINT AUTO_INCREMENT PRIMARY KEY,
    processed BOOLEAN NOT NULL
);

βœ… Sample Data (Automatically Inserted at Startup)

id processed
1 FALSE
2 FALSE
3 TRUE
... ...

πŸ”„ How the Locking Works

πŸ”Ή Pessimistic Locking (@Lock(PESSIMISTIC_WRITE))

  • Ensures no two workers process the same task.
  • Prevents conflicts by locking the row until the transaction is complete.
@Lock(LockModeType.PESSIMISTIC_WRITE)
@QueryHints({
    @QueryHint(name = "javax.persistence.lock.timeout", value = "-2") // Skip locked rows
})
@Query("SELECT t FROM Process t WHERE t.processed = false")
List<Process> findUnprocessedWithLock();

πŸ”Ή Skip Locking (FOR UPDATE SKIP LOCKED)

  • Skips already locked rows to avoid blocking other transactions.
  • Used for efficient parallel task processing.
SELECT * FROM tbl_process WHERE processed = FALSE 
FOR UPDATE SKIP LOCKED LIMIT 10;

1️⃣ Start multiple instances of the application:

mvn spring-boot:run

2️⃣ Observe logs to see how tasks are processed in parallel.
3️⃣ Check the database to verify processed tasks:

SELECT COUNT(*) FROM tbl_process WHERE processed = TRUE;

πŸ“Œ Conclusion

πŸ”Ή Pessimistic Locking ensures safe, conflict-free processing.
πŸ”Ή Skip Locking improves efficiency by avoiding locked rows.
πŸ”Ή Parallel processing speeds up task execution.

About

Concurrency Control Locking manages concurrent transactions using pessimistic locking, which locks records to prevent conflicts, and skip locking, which skips locked records to improve processing efficiency. These mechanisms ensure data consistency while optimizing performance in high-concurrency scenarios.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages