Class: HealthyPools
- Inherits:
-
Object
- Object
- HealthyPools
- Defined in:
- lib/healthy_pools.rb,
lib/healthy_pools/version.rb,
lib/healthy_pools/monotonic_time.rb
Overview
Generic connection pool class for e.g. sharing a limited number of network connections among many threads. Note: Connections are lazily created.
Example usage with block (faster):
@pool = HealthyPools.new { Redis.new }
@pool.with do |redis|
redis.lpop('my-list') if redis.llen('my-list') > 0
end
Using optional timeout override (for that single invocation)
@pool.with(timeout: 2.0) do |redis|
redis.lpop('my-list') if redis.llen('my-list') > 0
end
Example usage replacing an existing connection (slower):
$redis = HealthyPools.wrap { Redis.new }
def do_work
$redis.lpop('my-list') if $redis.llen('my-list') > 0
end
Accepts the following options:
-
:size - number of connections to pool, defaults to 5
-
:timeout - amount of time to wait for a connection if none currently available, defaults to 5 seconds
Defined Under Namespace
Classes: Error, PoolShuttingDownError, TimedStack, Wrapper
Constant Summary collapse
- DEFAULTS =
{size: 5, timeout: 5, health_check: nil}
- VERSION =
"2.2.5"
Class Method Summary collapse
-
.monotonic_time ⇒ Float
Returns the current time a tracked by the application monotonic clock.
- .wrap(options, &block) ⇒ Object
Instance Method Summary collapse
-
#available ⇒ Object
Number of pool entries available for checkout at this instant.
- #checkin ⇒ Object
- #checkout(options = {}) ⇒ Object
-
#initialize(options = {}, &block) ⇒ HealthyPools
constructor
A new instance of HealthyPools.
- #shutdown(&block) ⇒ Object
-
#size ⇒ Object
Size of this connection pool.
-
#with(options = {}) ⇒ Object
jruby 1.7.x.
Constructor Details
#initialize(options = {}, &block) ⇒ HealthyPools
Returns a new instance of HealthyPools.
44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/healthy_pools.rb', line 44 def initialize( = {}, &block) raise ArgumentError, 'Connection pool requires a block' unless block = DEFAULTS.merge() @size = .fetch(:size) @timeout = .fetch(:timeout) @health_check = [:health_check] @available = TimedStack.new(@size, health_check: @health_check, &block) @key = :"current-#{@available.object_id}" @key_count = :"current-#{@available.object_id}-count" end |
Class Method Details
.monotonic_time ⇒ Float
Returns the current time a tracked by the application monotonic clock.
62 63 64 |
# File 'lib/healthy_pools/monotonic_time.rb', line 62 def monotonic_time GLOBAL_MONOTONIC_CLOCK.get_time end |
Instance Method Details
#available ⇒ Object
Number of pool entries available for checkout at this instant.
123 124 125 |
# File 'lib/healthy_pools.rb', line 123 def available @available.length end |
#checkin ⇒ Object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/healthy_pools.rb', line 98 def checkin if ::Thread.current[@key] if ::Thread.current[@key_count] == 1 @available.push(::Thread.current[@key]) ::Thread.current[@key]= nil else ::Thread.current[@key_count]-= 1 end else raise HealthyPools::Error, 'no connections are checked out' end nil end |
#checkout(options = {}) ⇒ Object
88 89 90 91 92 93 94 95 96 |
# File 'lib/healthy_pools.rb', line 88 def checkout( = {}) if ::Thread.current[@key] ::Thread.current[@key_count]+= 1 ::Thread.current[@key] else ::Thread.current[@key_count]= 1 ::Thread.current[@key]= @available.pop([:timeout] || @timeout) end end |
#shutdown(&block) ⇒ Object
113 114 115 |
# File 'lib/healthy_pools.rb', line 113 def shutdown(&block) @available.shutdown(&block) end |
#size ⇒ Object
Size of this connection pool
118 119 120 |
# File 'lib/healthy_pools.rb', line 118 def size @size end |
#with(options = {}) ⇒ Object
jruby 1.7.x
61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/healthy_pools.rb', line 61 def with( = {}) Thread.handle_interrupt(Exception => :never) do conn = checkout() begin Thread.handle_interrupt(Exception => :immediate) do yield conn end ensure checkin end end end |