-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With_advisory_lock test with Multiple threads fails #42
Comments
(original author here, but realize it's been 6 years since I wrote this, and I'm no longer the maintainer). If you're not in a transaction, (depending on the rdbms, but certainly true with MySQL), consistency guarantees are simply not present. It's never a bad idea to be in a transaction, as autocommit (at least used to be) much slower than explicit transaction boundaries. |
Thanks for jumping on this one (SO op here). Can you elaborate a bit on “consistency guarantees are not present”? Does that mean that locks work only some of the time, or would it mean that in the context of Rails, acquiring db lock is not always guaranteed? @allanohorn Thanks for the tip on ‘create_or_find_by’ - I ended up implementing something very similar that relies on catching unique constraint exceptions before I knew about ’create_or_find_by’ |
With MySQL, if you're not in a txn, read results may not reflect the committed state of the database, depending on what engine you're using and how you've configured it. |
I have same problem with rspec tests. When I disable with_advisory_lock, it works as expected |
I had some problems but I've been able to resolve them by setting rspecs use_transactional_fixtures to false (as I should have done in the first place given I use database_cleaner). I've written two tests to be able to see that w/o locks two threads run async and with locks they get synchronized. They work as expected, both letting database_cleaner use transactions or not. RSpec.describe :with_advisory_lock, type: :model do
def thread_1(lock, result)
Thread.new do
ActiveRecord::Base.with_advisory_lock(lock) do
result << "thread_1"
sleep 0.01
result << "/thread_1"
end
end
end
def thread_2(lock, result)
Thread.new do
ActiveRecord::Base.with_advisory_lock(lock) do
result << "thread_2"
end
end
end
it "can run two different synchronized tasks in parallel" do
global_result = []
10.times do
result = []
[
thread_1("lock_1", result),
thread_2("lock_2", result)
].each(&:join)
global_result << result
end
expect(global_result).to include(%w[thread_1 thread_2 /thread_1])
end
it "can synchronize tasks with the same key" do
10.times do
result = []
[
thread_1("same_lock", result),
thread_2("same_lock", result)
].each(&:join)
# check thread_1 and /thread_1 are siblings
expect(result.index("thread_1")).to eq(result.index("/thread_1") - 1)
end
end
end |
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:with_advisory_lock
block in a Transaction -> Locking behavior as expectedwith_advisory_lock
block -> 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_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:
and the accompanying test:
What I expect to happen:
What actually happens:
ActiveRecord::RecordNotUnique
error (I have a unique index on the table that allows for a singleuser_subscription
with the sameuser_id
)What is more weird is that if I add a
sleep
for a few hundred milliseconds in my method just before thefind_or_create
method, the test never fails: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:
I have also wrapped
first_or_create
in a transaction, which makes the test pass and everything to work as expected:So why is wrapping
first_or_create
in a transaction necessary to make things work?The text was updated successfully, but these errors were encountered: