4.4 KiB
Answers to Theoretical Questions
1. Atomic Variables vs. Normal Variables
Atomic variables are special classes that allow us to perform operations (like increments or updates) as a single, indivisible step.
The main difference is how they handle concurrency. With a normal variable (like int), an operation like counter++ actually takes three separate steps: read the value, add one, and write it back. If multiple threads do this at the same time, they can interrupt each other and mess up the final value (a race condition). Atomic variables fix this; an operation like atomicInt.incrementAndGet() does all three steps in one uninterruptible motion, guaranteeing thread safety without needing explicit locks.
2. Four Classes from java.util.concurrent.atomic
Four commonly used atomic classes are:
AtomicIntegerAtomicLongAtomicBooleanAtomicReference
Use Case: Imagine we are building a web server and need to count incoming HTTP requests. Instead of using synchronized blocks which can slow things down, we can use an AtomicInteger. We simply call incrementAndGet() every time a request comes in. It safely and efficiently counts the requests even if thousands of threads hit it at the exact same millisecond.
3. Locks vs. Atomic Variables
- When to use Atomic Variables: They are the best choice when we only need to update a single shared variable (like a simple counter or a flag). They are lightweight, fast, and don't block threads the way locks do.
- When to use Locks: We need locks when our critical section involves updating multiple variables at the same time, or when we are doing a complex multi-step operation that must be atomic as a whole (for example, transferring money from Account A to Account B). Atomic variables can't group multiple different variables into one atomic action.
4. Poor Performance Under High Load (Without Race Conditions)
Even if a program is perfectly thread-safe and has no race conditions, its performance can tank under heavy load due to:
- Contention: Too many threads waiting in line for the same lock. Only one thread gets to execute while the rest are blocked, effectively destroying the benefits of parallel processing.
- False Sharing: When two completely unrelated variables end up sitting in the same CPU cache line. If one thread updates variable A, the CPU is forced to invalidate and sync the entire cache line across other cores that might just be reading variable B, causing massive overhead.
- Over-synchronization: Locking large chunks of code (like adding
synchronizedto an entire large method) when only a tiny fraction of that code actually accesses shared data.
5. Why Adding More Threads Doesn't Always Improve Performance
Adding threads has a physical cost for the OS and the CPU. Eventually, the overhead outweighs the benefits:
- Context Switching: The CPU has to constantly pause threads, save their current state, and load the state of the next thread. This takes time away from actual execution.
- Contention: More threads mean more competition for shared resources, memory, and locks, leading to longer wait times.
- Cache Coherence: Keeping CPU caches synchronized across multiple cores gets exponentially more expensive as more threads constantly modify shared data.
- Synchronization Overhead: The sheer act of acquiring and releasing locks takes time, which adds up quickly when hundreds of threads are involved.
6. Deadlocks in Production vs. Testing
Why they appear in production: Testing environments are usually predictable, have fewer threads, and execute code in a clean order. Production environments are chaotic—they handle thousands of concurrent threads with unpredictable network lags and OS scheduling. Deadlocks usually require a very specific, "unlucky" timing of lock acquisitions, which naturally surfaces in the chaos of production but rarely in isolated tests.
Two ways to catch them in testing:
- Stress Testing: Bombard the application with a massive number of threads and run the test loops thousands of times. This brute-force approach increases the statistical probability of hitting that unlucky lock order.
- Inject Random Delays: Place a
Thread.sleep(randomTime)right between acquiring the first lock and trying to acquire the second lock. This simulates real-world OS/network delays and easily exposes a vulnerable locking order.