-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path08_advisory_locking_spec.rb
More file actions
114 lines (92 loc) · 3.49 KB
/
Copy path08_advisory_locking_spec.rb
File metadata and controls
114 lines (92 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
RSpec.describe 'Write skews with disjoint sets versus transaction advisory locks' do
around do |example|
execute <<~SQL
CREATE TABLE events (
id text NOT NULL,
available_seats integer NOT NULL CHECK (available_seats >= 0),
PRIMARY KEY (id)
);
SQL
execute <<~SQL
CREATE TABLE bookings (
id uuid DEFAULT gen_random_uuid() NOT NULL,
customer_name text NOT NULL,
seat_count integer NOT NULL,
event_id text NOT NULL,
FOREIGN KEY (event_id) REFERENCES events (id),
PRIMARY KEY (id)
);
SQL
example.run
ensure
execute 'DROP TABLE IF EXISTS bookings;'
execute 'DROP TABLE IF EXISTS events;'
end
before do
transaction do
Event.create!(id: 'event_a', available_seats: 4)
Booking.create!(customer_name: 'Alice', seat_count: 1, event_id: 'event_a')
Booking.create!(customer_name: 'Bob', seat_count: 1, event_id: 'event_a')
end
end
let(:alice) do
define('alice') do
transaction(isolation: :repeatable_read) do
synchronizer[:alice_started] = true
wait_until do
synchronizer[:bob_started]
end
lock_key = Zlib.crc32('alice:bob')
execute("SELECT pg_advisory_xact_lock('#{lock_key}')")
seat_count = log Booking.where(customer_name: %w[Alice Bob], event_id: 'event_a').sum(:seat_count)
yield_control
if seat_count == 2
Booking.where(customer_name: 'Alice', event_id: 'event_a').update_all(seat_count: 2)
end
# Let Bob wait for a bit
wait_for(seconds: 2)
end
yield_control
end
end
let(:bob) do
define('bob') do
transaction(isolation: :repeatable_read) do
synchronizer[:bob_started] = true
wait_until do
synchronizer[:alice_started]
end
# Let Alice lock first
wait_for(seconds: 0.5)
lock_key = Zlib.crc32('alice:bob')
execute("SELECT pg_advisory_xact_lock('#{lock_key}')")
seat_count = log Booking.where(customer_name: %w[Alice Bob], event_id: 'event_a').sum(:seat_count)
yield_control
if seat_count == 2
Booking.where(customer_name: 'Bob', event_id: 'event_a').update_all(seat_count: 2)
end
end
end
end
specify <<-DESC.lstrip do
A write skew anomaly is not avoided by using transaction-level advisory locks;
an advisory lock is not bound to a particular row or a table,
but the application is fully responsible for managing them;
however, the application is fully responsible for managing them;
a lock key is an integer, but arbitrary data can be mapped to it, e.g using a hash function;
a transaction-level advisory lock does not work in this case, since the snapshot
is locked the moment the first SELECT statement is issued, which is before Alice's transaction commits;
after Bob gets the lock, he sees the old snapshot, and the anomaly occurs again
DESC
start_in_order_and_conduct(
[bob, { execute_without_coordination: true }],
[alice, { execute_without_coordination: true }]
)
expect(outcomes(bob, alice)).to match_array(%i[success success])
# Both end up booking the extra seat
alice_taken_seats = log Booking.where(customer_name: 'Alice', event_id: 'event_a').sum(:seat_count)
expect(alice_taken_seats).to eq(2)
bob_taken_seats = log Booking.where(customer_name: 'Bob', event_id: 'event_a').sum(:seat_count)
expect(bob_taken_seats).to eq(2)
end
end