| name | race-conditions |
| description | Use when multiple operations access shared state. Use when order of operations matters. Use when "it works most of the time" but occasionally fails mysteriously. |
Race Conditions
Overview
When outcome depends on timing, you have a race. Races are bugs waiting to happen.
Race conditions occur when correctness depends on the relative timing of events. They're insidious because they work most of the time, fail randomly, and are nearly impossible to reproduce.
When to Use
- Multiple async operations access shared state
- Database read-then-write patterns
- Concurrent API requests modify same resource
- "Works in development, fails in production"
- Intermittent bugs that can't be reproduced
The Iron Rule
NEVER read-then-write without atomicity guarantees.
No exceptions:
- Not for "it's fast, timing won't matter"
- Not for "only one user at a time"
- Not for "we'll fix it if it breaks"
- Not for "it works in testing"
If timing can affect outcome, you have a race condition.
Detection: The TOCTOU Pattern
Time-Of-Check to Time-Of-Use: checking something, then acting on it.
async function withdrawMoney(accountId: string, amount: number): Promise<void> {
const account = await db.accounts.findById(accountId);
if (account.balance >= amount) {
await db.accounts.update(accountId, {
balance: account.balance - amount
});
}
}
Correct Patterns
1. Atomic Operations
async function withdrawMoney(accountId: string, amount: number): Promise<boolean> {
const result = await db.accounts.updateOne(
{
_id: accountId,
balance: { $gte: amount }
},
{
$inc: { balance: -amount }
}
);
if (result.modifiedCount === 0) {
throw new InsufficientFundsError(accountId, amount);
}
return true;
}
2. Database Transactions
async function transferMoney(
fromId: string,
toId: string,
amount: number
): Promise<void> {
await db.transaction(async (tx) => {
const from = await tx.accounts
.findById(fromId)
.forUpdate();
const to = await tx.accounts
.findById(toId)
.forUpdate();
if (from.balance < amount) {
throw new InsufficientFundsError(fromId, amount);
}
await tx.accounts.update(fromId, { balance: from.balance - amount });
await tx.accounts.update(toId, { balance: to.balance + amount });
});
}
3. Optimistic Locking
async function updateDocument(
id: string,
updates: Partial<Document>
): Promise<Document> {
const maxRetries = 3;
for (let attempt = 0; attempt < maxRetries; attempt++) {
const doc = await db.documents.findById(id);
const result = await db.documents.updateOne(
{
_id: id,
version: doc.version
},
{
$set: updates,
$inc: { version: 1 }
}
);
if (result.modifiedCount > 0) {
return { ...doc, ...updates, version: doc.version + 1 };
}
await sleep(Math.random() * 100);
}
throw new ConcurrentModificationError(id);
}
4. Distributed Locks
async function processOrder(orderId: string): Promise<void> {
const lockKey = `order:${orderId}:lock`;
const lockTTL = 30000;
const lock = await redis.acquireLock(lockKey, lockTTL);
if (!lock) {
throw new OrderAlreadyProcessingError(orderId);
}
try {
await doExpensiveOrderProcessing(orderId);
} finally {
await redis.releaseLock(lockKey, lock);
}
}
5. Idempotency Keys
async function createPayment(
idempotencyKey: string,
data: PaymentData
): Promise<Payment> {
const existing = await db.payments.findByIdempotencyKey(idempotencyKey);
if (existing) {
return existing;
}
try {
await db.idempotencyKeys.insert({
key: idempotencyKey,
status: 'processing',
createdAt: new Date(),
});
} catch (error) {
if (isDuplicateKeyError(error)) {
const existing = await db.payments.findByIdempotencyKey(idempotencyKey);
if (existing) return existing;
throw new PaymentProcessingError('Payment in progress');
}
throw error;
}
const payment = await processPayment(data);
await db.idempotencyKeys.update(idempotencyKey, {
status: 'completed',
result: payment.id,
});
return payment;
}
Common Race Condition Patterns
| Pattern | Problem | Solution |
|---|
| Check-then-act | State changes between check and act | Atomic check-and-act |
| Read-modify-write | Value changes after read | Atomic update or lock |
| Lazy initialization | Multiple threads initialize | Double-checked locking or atomic init |
| Counter increment | Lost updates | Atomic increment |
| First-one-wins | Multiple claim "first" | Atomic claim with unique constraint |
Language-Specific Patterns
JavaScript/Node.js
let requestCount = 0;
async function handleRequest() {
requestCount++;
}
import { createClient } from 'redis';
const redis = createClient();
async function handleRequest() {
const count = await redis.incr('request_count');
}
Python
def get_or_create(key: str, factory: Callable) -> Any:
if key not in cache:
cache[key] = factory()
return cache[key]
from threading import Lock
lock = Lock()
def get_or_create(key: str, factory: Callable) -> Any:
with lock:
if key not in cache:
cache[key] = factory()
return cache[key]
Pressure Resistance Protocol
1. "It's Fast, Timing Won't Matter"
Pressure: "The operation takes microseconds"
Response: Production load creates overlap. Under load, "fast" operations overlap frequently. Race conditions scale with traffic.
Action: Use atomic operations. Speed doesn't prevent races.
2. "Only One User at a Time"
Pressure: "Low traffic, won't have concurrent requests"
Response: Users double-click. Tabs refresh. Bots hammer. Mobile retries on timeout. "Low traffic" has bursts.
Action: Design for concurrency even if you don't expect it.
3. "We'll Fix It If It Breaks"
Pressure: "Ship now, fix later"
Response: Race conditions are nearly impossible to reproduce. You'll spend weeks debugging "random" failures.
Action: Build it correctly now. Cheaper than debugging later.
4. "It Works in Testing"
Pressure: "All tests pass"
Response: Tests run sequentially. Production runs concurrently. Race conditions hide in serial execution.
Action: Write concurrent tests. Load test. Assume races exist.
Red Flags - STOP and Reconsider
If you notice ANY of these patterns, you likely have a race:
if (condition) { update based on condition }
read(); compute(); write(computed);
check availability; book;
get count; increment; save count;
- Global or shared mutable state
- "Works most of the time"
- "Can't reproduce in development"
- Timeouts that "fix" intermittent bugs
All of these mean: Add atomicity guarantees.
Testing for Race Conditions
describe('withdraw', () => {
it('handles concurrent withdrawals correctly', async () => {
await db.accounts.create({ id: 'test', balance: 100 });
const withdrawals = Array(10).fill(null).map(() =>
withdrawMoney('test', 20).catch(() => 'failed')
);
const results = await Promise.all(withdrawals);
const successful = results.filter(r => r !== 'failed').length;
expect(successful).toBe(5);
const account = await db.accounts.findById('test');
expect(account.balance).toBe(0);
});
});
Common Rationalizations (All Invalid)
| Excuse | Reality |
|---|
| "It's fast enough" | Fast operations still overlap under load. |
| "Low traffic" | Retries, double-clicks, bots create concurrency. |
| "Works in dev" | Dev is serial. Prod is parallel. |
| "Fix when it breaks" | Race bugs are unfindable. Fix now. |
| "Just add a sleep" | Sleeps don't fix races, just hide them. |
| "Users won't do that" | Users do everything you don't expect. |
Quick Reference
| Scenario | Solution |
|---|
| Balance check before update | Atomic conditional update |
| Increment counter | Atomic increment (Redis INCR, SQL += 1) |
| Complex multi-step operation | Database transaction with locks |
| Cross-service operation | Distributed lock |
| Duplicate request prevention | Idempotency key |
| Version conflicts | Optimistic locking |
The Bottom Line
If correctness depends on timing, you have a bug.
Read-then-write is a race. Check-then-act is a race. Any gap between observing state and acting on it is a race. Use atomic operations, transactions, locks, or idempotency keys. Never assume "it's fast enough" or "traffic is low."