mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Make connection stealing more explicit
This commit is contained in:
parent
f397b385c4
commit
61f4b1ff8a
3 changed files with 27 additions and 6 deletions
|
@ -415,7 +415,10 @@ module ActiveRecord
|
||||||
with_exclusively_acquired_all_connections(raise_on_acquisition_timeout) do
|
with_exclusively_acquired_all_connections(raise_on_acquisition_timeout) do
|
||||||
synchronize do
|
synchronize do
|
||||||
@connections.each do |conn|
|
@connections.each do |conn|
|
||||||
checkin conn
|
if conn.in_use?
|
||||||
|
conn.steal!
|
||||||
|
checkin conn
|
||||||
|
end
|
||||||
conn.disconnect!
|
conn.disconnect!
|
||||||
end
|
end
|
||||||
@connections = []
|
@connections = []
|
||||||
|
@ -447,7 +450,10 @@ module ActiveRecord
|
||||||
with_exclusively_acquired_all_connections(raise_on_acquisition_timeout) do
|
with_exclusively_acquired_all_connections(raise_on_acquisition_timeout) do
|
||||||
synchronize do
|
synchronize do
|
||||||
@connections.each do |conn|
|
@connections.each do |conn|
|
||||||
checkin conn
|
if conn.in_use?
|
||||||
|
conn.steal!
|
||||||
|
checkin conn
|
||||||
|
end
|
||||||
conn.disconnect! if conn.requires_reloading?
|
conn.disconnect! if conn.requires_reloading?
|
||||||
end
|
end
|
||||||
@connections.delete_if(&:requires_reloading?)
|
@connections.delete_if(&:requires_reloading?)
|
||||||
|
@ -557,8 +563,7 @@ module ActiveRecord
|
||||||
@connections.select do |conn|
|
@connections.select do |conn|
|
||||||
conn.in_use? && !conn.owner.alive?
|
conn.in_use? && !conn.owner.alive?
|
||||||
end.each do |conn|
|
end.each do |conn|
|
||||||
conn.expire
|
conn.steal!
|
||||||
conn.lease
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -185,7 +185,7 @@ module ActiveRecord
|
||||||
# this method must only be called while holding connection pool's mutex
|
# this method must only be called while holding connection pool's mutex
|
||||||
def expire
|
def expire
|
||||||
if in_use?
|
if in_use?
|
||||||
if @owner != Thread.current && @owner.alive?
|
if @owner != Thread.current
|
||||||
raise ActiveRecordError, "Cannot expire connection, " <<
|
raise ActiveRecordError, "Cannot expire connection, " <<
|
||||||
"it is owned by a different thread: #{@owner}. " <<
|
"it is owned by a different thread: #{@owner}. " <<
|
||||||
"Current thread: #{Thread.current}."
|
"Current thread: #{Thread.current}."
|
||||||
|
@ -197,6 +197,19 @@ module ActiveRecord
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# this method must only be called while holding connection pool's mutex (and a desire for segfaults)
|
||||||
|
def steal! # :nodoc:
|
||||||
|
if in_use?
|
||||||
|
if @owner != Thread.current
|
||||||
|
pool.send :remove_connection_from_thread_cache, self, @owner
|
||||||
|
|
||||||
|
@owner = Thread.current
|
||||||
|
end
|
||||||
|
else
|
||||||
|
raise ActiveRecordError, 'Cannot steal connection, it is not currently leased.'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def unprepared_statement
|
def unprepared_statement
|
||||||
old_prepared_statements, @prepared_statements = @prepared_statements, false
|
old_prepared_statements, @prepared_statements = @prepared_statements, false
|
||||||
yield
|
yield
|
||||||
|
|
|
@ -151,7 +151,7 @@ module ActiveRecord
|
||||||
|
|
||||||
assert_equal 1, active_connections(@pool).size
|
assert_equal 1, active_connections(@pool).size
|
||||||
ensure
|
ensure
|
||||||
@pool.connections.each(&:close)
|
@pool.connections.each { |conn| conn.close if conn.in_use? }
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_remove_connection
|
def test_remove_connection
|
||||||
|
@ -432,6 +432,9 @@ module ActiveRecord
|
||||||
Thread.new { @pool.send(group_action_method) }.join
|
Thread.new { @pool.send(group_action_method) }.join
|
||||||
# assert connection has been forcefully taken away from us
|
# assert connection has been forcefully taken away from us
|
||||||
assert_not @pool.active_connection?
|
assert_not @pool.active_connection?
|
||||||
|
|
||||||
|
# make a new connection for with_connection to clean up
|
||||||
|
@pool.connection
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue