active_publisher 1.2.0.pre7-java → 1.2.4-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +56 -0
- data/active_publisher.gemspec +1 -1
- data/lib/active_publisher.rb +2 -2
- data/lib/active_publisher/async/in_memory_adapter/consumer_thread.rb +79 -52
- data/lib/active_publisher/configuration.rb +11 -2
- data/lib/active_publisher/connection.rb +23 -0
- data/lib/active_publisher/version.rb +1 -1
- metadata +10 -10
- data/.travis.yml +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9716e4719f25f9859f126740053aa8876da44015057ef541c6473a1999ce3be9
|
4
|
+
data.tar.gz: 05a592d671869f9aaa39b127692454c6c95a5cc53d8cfeac4b7cce34cc42c231
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7756e073e9213f7a900837748c8753863ff4802ecb673190a952f38a90347bde3c1bd158df9644dca1c15eb9333495388835cee8f93cdf7f92dabe93cfad2c63
|
7
|
+
data.tar.gz: 9bcb7dacca3a4479f6d0dfb5b5573435ea40723477b7ce26ca83198c98d43de978512de5ee4209ae062d1d1759fee49b4bddac953792b68df836f7691e090e49
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Inspired by: http://mikebian.co/running-tests-against-multiple-ruby-versions-using-circleci/
|
2
|
+
|
3
|
+
version: 2.1
|
4
|
+
|
5
|
+
orbs:
|
6
|
+
ruby: circleci/ruby@1.1
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
test:
|
10
|
+
parallelism: 1
|
11
|
+
parameters:
|
12
|
+
ruby-image:
|
13
|
+
type: string
|
14
|
+
docker:
|
15
|
+
- image: << parameters.ruby-image >>
|
16
|
+
- image: rabbitmq
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- checkout
|
20
|
+
- run:
|
21
|
+
name: install dockerize
|
22
|
+
command: wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && sudo tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
|
23
|
+
environment:
|
24
|
+
DOCKERIZE_VERSION: v0.3.0
|
25
|
+
- run:
|
26
|
+
name: Wait for rabbitmq
|
27
|
+
command: dockerize -wait tcp://localhost:5672 -timeout 1m
|
28
|
+
- run:
|
29
|
+
name: Install bundler
|
30
|
+
command: gem install bundler
|
31
|
+
- run:
|
32
|
+
name: Which bundler?
|
33
|
+
command: bundle -v
|
34
|
+
- run:
|
35
|
+
name: bundle install
|
36
|
+
command: bundle install
|
37
|
+
- run:
|
38
|
+
name: rspec
|
39
|
+
command: bundle exec rspec
|
40
|
+
|
41
|
+
# strangely, there seems to be very little documentation about exactly how martix builds work.
|
42
|
+
# By defining a param inside your job definition, Circle CI will automatically spawn a job for
|
43
|
+
# unique param value passed via `matrix`. Neat!
|
44
|
+
# https://circleci.com/blog/circleci-matrix-jobs/
|
45
|
+
workflows:
|
46
|
+
build_and_test:
|
47
|
+
jobs:
|
48
|
+
- test:
|
49
|
+
matrix:
|
50
|
+
parameters:
|
51
|
+
ruby-image:
|
52
|
+
- circleci/ruby:2.5
|
53
|
+
- circleci/ruby:2.6
|
54
|
+
- circleci/ruby:2.7
|
55
|
+
- circleci/jruby:9.1
|
56
|
+
- circleci/jruby:9.2
|
data/active_publisher.gemspec
CHANGED
@@ -35,6 +35,6 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.add_development_dependency "connection_pool"
|
36
36
|
spec.add_development_dependency "fakeredis"
|
37
37
|
spec.add_development_dependency "pry"
|
38
|
-
spec.add_development_dependency "rake"
|
38
|
+
spec.add_development_dependency "rake"
|
39
39
|
spec.add_development_dependency "rspec", "~> 3.2"
|
40
40
|
end
|
data/lib/active_publisher.rb
CHANGED
@@ -35,7 +35,7 @@ module ActivePublisher
|
|
35
35
|
# @param [Hash] options hash to set message parameters (e.g. headers)
|
36
36
|
def self.publish(route, payload, exchange_name, options = {})
|
37
37
|
with_exchange(exchange_name) do |exchange|
|
38
|
-
::ActiveSupport::Notifications.instrument "message_published.active_publisher" do
|
38
|
+
::ActiveSupport::Notifications.instrument "message_published.active_publisher", :route => route do
|
39
39
|
exchange.publish(payload, publishing_options(route, options))
|
40
40
|
end
|
41
41
|
end
|
@@ -51,7 +51,7 @@ module ActivePublisher
|
|
51
51
|
fail ActivePublisher::ExchangeMismatchError, "bulk publish messages must match publish_all exchange_name" if message.exchange_name != exchange_name
|
52
52
|
|
53
53
|
begin
|
54
|
-
::ActiveSupport::Notifications.instrument "message_published.active_publisher" do
|
54
|
+
::ActiveSupport::Notifications.instrument "message_published.active_publisher", :route => message.route do
|
55
55
|
exchange.publish(message.payload, publishing_options(message.route, message.options || {}))
|
56
56
|
end
|
57
57
|
rescue
|
@@ -2,7 +2,13 @@ module ActivePublisher
|
|
2
2
|
module Async
|
3
3
|
module InMemoryAdapter
|
4
4
|
class ConsumerThread
|
5
|
-
attr_reader :thread, :queue, :sampled_queue_size, :last_tick_at
|
5
|
+
attr_reader :channel, :thread, :queue, :sampled_queue_size, :last_tick_at
|
6
|
+
|
7
|
+
if ::RUBY_PLATFORM == "java"
|
8
|
+
CHANNEL_CLOSED_ERRORS = [::MarchHare::ChannelAlreadyClosed]
|
9
|
+
else
|
10
|
+
CHANNEL_CLOSED_ERRORS = [::Bunny::ChannelAlreadyClosed]
|
11
|
+
end
|
6
12
|
|
7
13
|
if ::RUBY_PLATFORM == "java"
|
8
14
|
NETWORK_ERRORS = [::MarchHare::NetworkException, ::MarchHare::ConnectionRefused,
|
@@ -45,6 +51,32 @@ module ActivePublisher
|
|
45
51
|
end
|
46
52
|
end
|
47
53
|
|
54
|
+
def cleanup_up_channel
|
55
|
+
return if @channel.nil?
|
56
|
+
@channel.close
|
57
|
+
rescue => error
|
58
|
+
::ActivePublisher.configuration.error_handler.call(error, {:status => "Cleaning up the channel"})
|
59
|
+
end
|
60
|
+
|
61
|
+
def handle_current_messages_on_unknown_error(current_messages)
|
62
|
+
current_messages.each do |message|
|
63
|
+
# Degrade to single message publish ... or at least attempt to
|
64
|
+
begin
|
65
|
+
::ActivePublisher.publish(message.route, message.payload, message.exchange_name, message.options)
|
66
|
+
current_messages.delete(message)
|
67
|
+
rescue *CHANNEL_CLOSED_ERRORS
|
68
|
+
# If the channel is bad, raise!
|
69
|
+
raise
|
70
|
+
rescue *PRECONDITION_ERRORS => error
|
71
|
+
# Delete messages if rabbitmq cannot declare the exchange (or somet other precondition failed).
|
72
|
+
::ActivePublisher.configuration.error_handler.call(error, {:reason => "precondition failed", :message => message})
|
73
|
+
current_messages.delete(message)
|
74
|
+
rescue => other_error
|
75
|
+
::ActivePublisher.configuration.error_handler.call(other_error, {:route => message.route, :payload => message.payload, :exchange_name => message.exchange_name, :options => message.options})
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
48
80
|
def make_channel
|
49
81
|
channel = ::ActivePublisher::Async::InMemoryAdapter::Channel.new
|
50
82
|
channel.confirm_select if ::ActivePublisher.configuration.publisher_confirms
|
@@ -57,67 +89,62 @@ module ActivePublisher
|
|
57
89
|
|
58
90
|
def start_thread
|
59
91
|
return if alive?
|
60
|
-
@
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
# Sleep because connection is down
|
82
|
-
await_network_reconnect
|
83
|
-
rescue => unknown_error
|
84
|
-
::ActivePublisher.configuration.error_handler.call(unknown_error, {:number_of_messages => current_messages.size})
|
85
|
-
current_messages.each do |message|
|
86
|
-
# Degrade to single message publish ... or at least attempt to
|
87
|
-
begin
|
88
|
-
::ActivePublisher.publish(message.route, message.payload, message.exchange_name, message.options)
|
89
|
-
current_messages.delete(message)
|
90
|
-
rescue *PRECONDITION_ERRORS => error
|
91
|
-
# Delete messages if rabbitmq cannot declare the exchange (or somet other precondition failed).
|
92
|
-
::ActivePublisher.configuration.error_handler.call(error, {:reason => "precondition failed", :message => message})
|
93
|
-
current_messages.delete(message)
|
94
|
-
rescue => individual_error
|
95
|
-
::ActivePublisher.configuration.error_handler.call(individual_error, {:route => message.route, :payload => message.payload, :exchange_name => message.exchange_name, :options => message.options})
|
96
|
-
end
|
97
|
-
end
|
98
|
-
|
99
|
-
# TODO: Find a way to bubble this out of the thread for logging purposes.
|
100
|
-
# Reraise the error out of the publisher loop. The Supervisor will restart the consumer.
|
101
|
-
raise unknown_error
|
102
|
-
ensure
|
103
|
-
# Always requeue anything that gets stuck.
|
104
|
-
queue.concat(current_messages) if current_messages && !current_messages.empty?
|
92
|
+
@channel = make_channel
|
93
|
+
@thread = ::Thread.new { start_consuming_thread }
|
94
|
+
end
|
95
|
+
|
96
|
+
def start_consuming_thread
|
97
|
+
loop do
|
98
|
+
# Sample the queue size so we don't shutdown when messages are in flight.
|
99
|
+
@sampled_queue_size = queue.size
|
100
|
+
current_messages = queue.pop_up_to(50, :timeout => 0.1)
|
101
|
+
update_last_tick_at
|
102
|
+
# If the queue is empty, we should continue to update to "last_tick_at" time.
|
103
|
+
next if current_messages.nil?
|
104
|
+
|
105
|
+
# We only look at active publisher messages. Everything else is dropped.
|
106
|
+
current_messages.select! { |message| message.is_a?(::ActivePublisher::Message) }
|
107
|
+
|
108
|
+
begin
|
109
|
+
# Only open a single connection for each group of messages to an exchange
|
110
|
+
current_messages.group_by(&:exchange_name).each do |exchange_name, messages|
|
111
|
+
publish_all(@channel, exchange_name, messages)
|
112
|
+
current_messages -= messages
|
105
113
|
end
|
114
|
+
rescue *CHANNEL_CLOSED_ERRORS
|
115
|
+
# If the channel is bad, raise without sending one-by-one!
|
116
|
+
raise
|
117
|
+
rescue *NETWORK_ERRORS
|
118
|
+
# Sleep because connection is down
|
119
|
+
await_network_reconnect
|
120
|
+
rescue => unknown_error
|
121
|
+
::ActivePublisher.configuration.error_handler.call(unknown_error, {:number_of_messages => current_messages.size})
|
122
|
+
|
123
|
+
# Attempt to deliver a message one-by-one. Raise if a closed channel error appears.
|
124
|
+
handle_current_messages_on_unknown_error(current_messages)
|
125
|
+
|
126
|
+
# TODO: Find a way to bubble this out of the thread for logging purposes.
|
127
|
+
# Reraise the error out of the publisher loop. The Supervisor will restart the consumer.
|
128
|
+
raise unknown_error
|
129
|
+
ensure
|
130
|
+
# Always requeue anything that gets stuck.
|
131
|
+
queue.concat(current_messages) if current_messages && !current_messages.empty?
|
106
132
|
end
|
107
133
|
end
|
134
|
+
ensure
|
135
|
+
cleanup_up_channel
|
108
136
|
end
|
109
137
|
|
110
138
|
def publish_all(channel, exchange_name, messages)
|
111
|
-
|
112
|
-
|
113
|
-
messages.
|
114
|
-
|
115
|
-
|
139
|
+
exchange = channel.topic(exchange_name)
|
140
|
+
messages.each do |message|
|
141
|
+
fail ::ActivePublisher::ExchangeMismatchError, "bulk publish messages must match publish_all exchange_name" if message.exchange_name != exchange_name
|
142
|
+
::ActiveSupport::Notifications.instrument "message_published.active_publisher", :route => message.route, :message_count => 1 do
|
116
143
|
options = ::ActivePublisher.publishing_options(message.route, message.options || {})
|
117
144
|
exchange.publish(message.payload, options)
|
118
145
|
end
|
119
|
-
wait_for_confirms(channel)
|
120
146
|
end
|
147
|
+
wait_for_confirms(channel)
|
121
148
|
end
|
122
149
|
|
123
150
|
def wait_for_confirms(channel)
|
@@ -63,8 +63,8 @@ module ActivePublisher
|
|
63
63
|
|
64
64
|
yaml_config = attempt_to_load_yaml_file(env)
|
65
65
|
DEFAULTS.each_pair do |key, value|
|
66
|
-
setting =
|
67
|
-
::ActivePublisher.configuration.public_send("#{key}=", setting) if
|
66
|
+
exists, setting = fetch_config_value(key, cli_options, yaml_config)
|
67
|
+
::ActivePublisher.configuration.public_send("#{key}=", setting) if exists
|
68
68
|
end
|
69
69
|
|
70
70
|
true
|
@@ -88,6 +88,15 @@ module ActivePublisher
|
|
88
88
|
end
|
89
89
|
private_class_method :attempt_to_load_yaml_file
|
90
90
|
|
91
|
+
def self.fetch_config_value(key, cli_options, yaml_config)
|
92
|
+
return [true, cli_options[key]] if cli_options.key?(key)
|
93
|
+
return [true, cli_options[key.to_s]] if cli_options.key?(key.to_s)
|
94
|
+
return [true, yaml_config[key]] if yaml_config.key?(key)
|
95
|
+
return [true, yaml_config[key.to_s]] if yaml_config.key?(key.to_s)
|
96
|
+
[false, nil]
|
97
|
+
end
|
98
|
+
private_class_method :fetch_config_value
|
99
|
+
|
91
100
|
##
|
92
101
|
# Instance Methods
|
93
102
|
#
|
@@ -31,9 +31,22 @@ module ActivePublisher
|
|
31
31
|
def self.create_connection
|
32
32
|
if ::RUBY_PLATFORM == "java"
|
33
33
|
connection = ::MarchHare.connect(connection_options)
|
34
|
+
connection.on_blocked do |reason|
|
35
|
+
on_blocked(reason)
|
36
|
+
end
|
37
|
+
connection.on_unblocked do
|
38
|
+
on_unblocked
|
39
|
+
end
|
40
|
+
connection
|
34
41
|
else
|
35
42
|
connection = ::Bunny.new(connection_options)
|
36
43
|
connection.start
|
44
|
+
connection.on_blocked do |blocked_message|
|
45
|
+
on_blocked(blocked_message.reason)
|
46
|
+
end
|
47
|
+
connection.on_unblocked do
|
48
|
+
on_unblocked
|
49
|
+
end
|
37
50
|
connection
|
38
51
|
end
|
39
52
|
end
|
@@ -58,5 +71,15 @@ module ActivePublisher
|
|
58
71
|
}
|
59
72
|
end
|
60
73
|
private_class_method :connection_options
|
74
|
+
|
75
|
+
def self.on_blocked(reason)
|
76
|
+
::ActiveSupport::Notifications.instrument("connection_blocked.active_publisher", :reason => reason)
|
77
|
+
end
|
78
|
+
private_class_method :on_blocked
|
79
|
+
|
80
|
+
def self.on_unblocked
|
81
|
+
::ActiveSupport::Notifications.instrument("connection_unblocked.active_publisher")
|
82
|
+
end
|
83
|
+
private_class_method :on_unblocked
|
61
84
|
end
|
62
85
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_publisher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Brian Stien
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: exe
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2020-11-20 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
@@ -143,17 +143,17 @@ dependencies:
|
|
143
143
|
- !ruby/object:Gem::Dependency
|
144
144
|
requirement: !ruby/object:Gem::Requirement
|
145
145
|
requirements:
|
146
|
-
- - "
|
146
|
+
- - ">="
|
147
147
|
- !ruby/object:Gem::Version
|
148
|
-
version: '
|
148
|
+
version: '0'
|
149
149
|
name: rake
|
150
150
|
prerelease: false
|
151
151
|
type: :development
|
152
152
|
version_requirements: !ruby/object:Gem::Requirement
|
153
153
|
requirements:
|
154
|
-
- - "
|
154
|
+
- - ">="
|
155
155
|
- !ruby/object:Gem::Version
|
156
|
-
version: '
|
156
|
+
version: '0'
|
157
157
|
- !ruby/object:Gem::Dependency
|
158
158
|
requirement: !ruby/object:Gem::Requirement
|
159
159
|
requirements:
|
@@ -179,9 +179,9 @@ executables: []
|
|
179
179
|
extensions: []
|
180
180
|
extra_rdoc_files: []
|
181
181
|
files:
|
182
|
+
- ".circleci/config.yml"
|
182
183
|
- ".gitignore"
|
183
184
|
- ".rspec"
|
184
|
-
- ".travis.yml"
|
185
185
|
- CODE_OF_CONDUCT.md
|
186
186
|
- Gemfile
|
187
187
|
- LICENSE.txt
|
@@ -219,12 +219,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
219
219
|
version: '0'
|
220
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
221
221
|
requirements:
|
222
|
-
- - "
|
222
|
+
- - ">="
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version:
|
224
|
+
version: '0'
|
225
225
|
requirements: []
|
226
226
|
rubyforge_project:
|
227
|
-
rubygems_version: 2.
|
227
|
+
rubygems_version: 2.7.9
|
228
228
|
signing_key:
|
229
229
|
specification_version: 4
|
230
230
|
summary: Aims to make publishing work across MRI and jRuby painless and add some nice
|