This issue was originally posted on Stack Overflow. [Stack Overflow].
(https://stackoverflow.com/questions/56146171/ruby-with-advisory-lock-test-with-multiple-threads-fails-intermittently)
Summary of the issue is that rails tests which create multiple threads then try to call an operation which uses with_advisory_lock do not seem work properly. Things that were tried:
- Wrap
with_advisory_lock block in a Transaction -> Locking behavior as expected
- Create a transacion within the
with_advisory_lock block -> Locking behavior as expected
- Use only transaction and NO
with_advisory_lock -> Locking behavior as expected
The only thing that doesn't seem to work as expected is just using with_advisory_lock as intended.
STACK OVERFLOW TICKET
I'm using the with_advisory_lock gem to try and ensure that a record is created only once. Here's the github url to the gem.
I have the following code, which sits in an operation class that I wrote to handle creating user subscriptions:
def create_subscription_for user
subscription = UserSubscription.with_advisory_lock("lock_%d" % user.id) do
UserSubscription.where({ user_id: user.id }).first_or_create
end
# do more stuff on that subscription
end
and the accompanying test:
threads = []
user = FactoryBot.create(:user)
rand(5..10).times do
threads << Thread.new do
subject.create_subscription_for(user)
end
end
threads.each(&:join)
expect(UserSubscription.count).to eq(1)
What I expect to happen:
- The first thread to get to the block acquires the lock and creates a record.
- Any other thread that gets to the block while it's being held by another thread [waits indefinitely until the lock is released] 1 (as per docs)
- As soon as the lock is released by the first thread that created the record, another thread acquires the lock and now finds the record because it was already created by the first thread.
What actually happens:
- The first thread to get to the block acquires the lock and creates a record.
- Any other thread that gets to the block while it's being held by another thread goes and executes the code in the block anyway and as a result, when running the test, it sometimes fails with a
ActiveRecord::RecordNotUnique error (I have a unique index on the table that allows for a single user_subscription with the same user_id)
What is more weird is that if I add a sleep for a few hundred milliseconds in my method just before the find_or_create method, the test never fails:
def create_subscription_for user
subscription = UserSubscription.with_advisory_lock("lock_%d" % user.id) do
sleep 0.2
UserSubscription.where({ user_id: user.id }).first_or_create
end
# do more stuff on that subscription
end
My questions are: "Why is adding the sleep 0.2 making the tests always pass?" and "Where do I look to debug this?"
Thanks!
UPDATE: Tweaking the tests a little bit causes them to always fail:
threads = []
user = FactoryBot.create(:user)
rand(5..10).times do
threads << Thread.new do
sleep
subject.create_subscription_for(user)
end
end
until threads.all? { |t| t.status == 'sleep' }
sleep 0.1
end
threads.each(&:wakeup)
threads.each(&:join)
expect(UserSubscription.count).to eq(1)
I have also wrapped first_or_create in a transaction, which makes the test pass and everything to work as expected:
def create_subscription_for user
subscription = UserSubscription.with_advisory_lock("lock_%d" % user.id) do
UserSubscription.transaction do
UserSubscription.where({ user_id: user.id }).first_or_create
end
end
# do more stuff on that subscription
end
So why is wrapping first_or_create in a transaction necessary to make things work?
This issue was originally posted on Stack Overflow. [Stack Overflow].
(https://stackoverflow.com/questions/56146171/ruby-with-advisory-lock-test-with-multiple-threads-fails-intermittently)
Summary of the issue is that rails tests which create multiple threads then try to call an operation which uses
with_advisory_lockdo not seem work properly. Things that were tried:with_advisory_lockblock in a Transaction -> Locking behavior as expectedwith_advisory_lockblock -> Locking behavior as expectedwith_advisory_lock-> Locking behavior as expectedThe only thing that doesn't seem to work as expected is just using
with_advisory_lockas intended.STACK OVERFLOW TICKET
I'm using the
with_advisory_lockgem to try and ensure that a record is created only once. Here's the github url to the gem.I have the following code, which sits in an operation class that I wrote to handle creating user subscriptions:
and the accompanying test:
What I expect to happen:
What actually happens:
ActiveRecord::RecordNotUniqueerror (I have a unique index on the table that allows for a singleuser_subscriptionwith the sameuser_id)What is more weird is that if I add a
sleepfor a few hundred milliseconds in my method just before thefind_or_createmethod, the test never fails:My questions are: "Why is adding the
sleep 0.2making the tests always pass?" and "Where do I look to debug this?"Thanks!
UPDATE: Tweaking the tests a little bit causes them to always fail:
I have also wrapped
first_or_createin a transaction, which makes the test pass and everything to work as expected:So why is wrapping
first_or_createin a transaction necessary to make things work?