-
Notifications
You must be signed in to change notification settings - Fork 332
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
Add another maxretry handler which does not create additional exchanges #205
Open
nevesenin
wants to merge
3
commits into
jondot:master
Choose a base branch
from
werliefertwas:feature/routing_maxretry
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,640
−25
Open
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,207 @@ | ||
require 'json' | ||
|
||
module Sneakers | ||
module Handlers | ||
# This handler does basically the same as MaxRetry handler. But it does not | ||
# create additional exchanges. Instead it uses dead-letter routing keys to | ||
# create the bindings to the retry and error queues. | ||
class RoutingMaxretry # rubocop:disable Metrics/ClassLength | ||
attr_reader :opts, :exchanges, :channel, :queue | ||
|
||
# @param channel [Bunny::Channel] | ||
# @param queue [Bunny::Queue] | ||
# @param worker_opts [Hash] | ||
def initialize(channel, queue, worker_opts) | ||
@channel = channel | ||
@queue = queue | ||
@opts = init_opts(worker_opts) | ||
|
||
Sneakers.logger.debug { "#{log_prefix} creating handler, opts=#{worker_opts}" } | ||
|
||
create_queues_and_bindings | ||
end | ||
|
||
# @param delivery_info [Bunny::DeliveryInfo] | ||
def acknowledge(delivery_info, _, _) | ||
channel.acknowledge(delivery_info.delivery_tag) | ||
end | ||
|
||
# @param delivery_info [Bunny::DeliveryInfo] | ||
# @param message_properties [Bunny::MessageProperties] | ||
# @param message [String] | ||
# @param requeue [Boolean] | ||
def reject(delivery_info, message_properties, message, requeue = false) | ||
if requeue | ||
# This was explicitly rejected specifying it be requeued so we do not | ||
# want it to pass through our retry logic. | ||
channel.reject(delivery_info.delivery_tag, requeue) | ||
else | ||
handle_retry(delivery_info, message_properties, message, :reject) | ||
end | ||
end | ||
|
||
# @param delivery_info [Bunny::DeliveryInfo] | ||
# @param message_properties [Bunny::MessageProperties] | ||
# @param message [String] | ||
# @param error [String, Symbol, Exception] | ||
def error(delivery_info, message_properties, message, error) | ||
handle_retry(delivery_info, message_properties, message, error) | ||
end | ||
|
||
# @param delivery_info [Bunny::DeliveryInfo] | ||
# @param message_properties [Bunny::MessageProperties] | ||
# @param message [String] | ||
def timeout(delivery_info, message_properties, message) | ||
handle_retry(delivery_info, message_properties, message, :timeout) | ||
end | ||
|
||
def noop(_, _, _); end | ||
|
||
private | ||
|
||
def init_opts(worker_opts) | ||
{ | ||
error_queue_name: "#{queue.name}.error", | ||
error_routing_key: "queue.#{queue.name}.error", | ||
requeue_routing_key: "queue.#{queue.name}.requeue", | ||
retry_max_times: 5, | ||
retry_queue_name: "#{queue.name}.retry", | ||
retry_routing_key: "queue.#{queue.name}.retry", | ||
retry_timeout: 6000, | ||
worker_queue_name: queue.name | ||
}.merge!(worker_opts) | ||
end | ||
|
||
def create_queues_and_bindings | ||
create_retry_queue_and_binding | ||
create_error_queue_and_binding | ||
|
||
# Route retry messages to worker queue | ||
queue.bind( | ||
opts[:exchange], | ||
routing_key: opts[:requeue_routing_key] | ||
) | ||
end | ||
|
||
def create_error_queue_and_binding | ||
create_queue_and_binding( | ||
opts[:error_queue_name], | ||
opts[:error_routing_key] | ||
) | ||
end | ||
|
||
def create_retry_queue_and_binding | ||
create_queue_and_binding( | ||
opts[:retry_queue_name], | ||
opts[:retry_routing_key], | ||
arguments: retry_queue_arguments | ||
) | ||
end | ||
|
||
def retry_queue_arguments | ||
{ | ||
'x-dead-letter-exchange' => opts[:exchange], | ||
'x-message-ttl' => opts[:retry_timeout], | ||
'x-dead-letter-routing-key' => opts[:requeue_routing_key] | ||
} | ||
end | ||
|
||
def create_queue_and_binding(queue_name, routing_key, arguments = {}) | ||
Sneakers.logger.debug do | ||
"#{log_prefix} creating queue=#{queue_name}, arguments=#{arguments}" | ||
end | ||
|
||
created_queue = channel.queue( | ||
queue_name, | ||
{ durable: queue_durable? }.merge!(arguments) | ||
) | ||
created_queue.bind(opts[:exchange], routing_key: routing_key) | ||
end | ||
|
||
def handle_retry(delivery_info, message_properties, message, reason) | ||
num_attempts = failure_count(message_properties.headers) + 1 | ||
if num_attempts <= opts[:retry_max_times] | ||
reject_to_retry(delivery_info, message_properties, num_attempts) | ||
else | ||
publish_to_error_queue(delivery_info, message_properties, message, reason, num_attempts) | ||
end | ||
end | ||
|
||
def publish_to_error_queue(delivery_info, message_properties, message, reason, num_attempts) | ||
Sneakers.logger.info do | ||
"#{log_prefix} message=failing, retry_count=#{num_attempts}, reason=#{reason}" | ||
end | ||
|
||
channel.basic_publish( | ||
error_payload(delivery_info, message_properties, message, reason, num_attempts), | ||
opts[:exchange], | ||
opts[:error_routing_key] | ||
) | ||
|
||
channel.acknowledge(delivery_info.delivery_tag) | ||
end | ||
|
||
def reject_to_retry(delivery_info, message_properties, num_attempts) | ||
Sneakers.logger.info do | ||
"#{log_prefix} msg=retrying, count=#{num_attempts}, headers=#{message_properties.headers}" | ||
end | ||
|
||
channel.reject(delivery_info.delivery_tag) | ||
end | ||
|
||
def error_payload(delivery_info, message_properties, payload, reason, num_attempts) | ||
{ | ||
_error: { | ||
reason: reason.to_s, | ||
num_attempts: num_attempts, | ||
failed_at: Time.now.iso8601, | ||
delivery_info: delivery_info.to_hash, | ||
message_properties: message_properties.to_hash, | ||
payload: payload.to_s | ||
}.merge!(exception_payload(reason)) | ||
}.to_json | ||
end | ||
|
||
def exception_payload(reason) | ||
return {} unless reason.is_a?(Exception) | ||
|
||
{ | ||
error_class: reason.class.to_s, | ||
error_message: reason.to_s | ||
}.merge!(exception_backtrace(reason)) | ||
end | ||
|
||
def exception_backtrace(reason) | ||
return {} unless reason.backtrace | ||
|
||
{ backtrace: reason.backtrace.take(10).join(', ') } | ||
end | ||
|
||
def failure_count(headers) | ||
x_death_array = x_death_array(headers) | ||
|
||
return 0 if x_death_array.count == 0 | ||
|
||
return x_death_array.count unless x_death_array.first['count'] | ||
|
||
x_death_array.first['count'].to_i | ||
end | ||
|
||
def x_death_array(headers) | ||
return [] unless headers && headers['x-death'] | ||
|
||
headers['x-death'].select do |x_death| | ||
x_death['queue'] == opts[:worker_queue_name] | ||
end | ||
end | ||
|
||
def log_prefix | ||
"#{self.class} handler [queue=#{opts[:worker_queue_name]}]" | ||
end | ||
|
||
def queue_durable? | ||
opts.fetch(:queue_options, {}).fetch(:durable, false) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
require 'sneakers' | ||
require 'thread' | ||
require 'redis' | ||
|
||
require 'sneakers/handlers/routing_maxretry' | ||
|
||
# This worker ... works | ||
class AlwaysAckWorker | ||
include Sneakers::Worker | ||
|
||
def work(_) | ||
ack! | ||
end | ||
end | ||
|
||
# This worker fails | ||
class AlwaysRejectWorker | ||
include Sneakers::Worker | ||
|
||
def work(_) | ||
reject! | ||
end | ||
end | ||
|
||
# This worker fails once | ||
class RejectOnceWorker | ||
include Sneakers::Worker | ||
|
||
def work_with_params(_, delivery_info, message_properties) | ||
if message_properties[:headers].nil? || | ||
message_properties[:headers]['x-death'].nil? | ||
reject! | ||
else | ||
dump = JSON.dump( | ||
'delivery_info' => delivery_info.to_hash, | ||
'message_properties' => message_properties.to_hash | ||
) | ||
Redis.new.set( | ||
self.class.queue_name, | ||
dump | ||
) | ||
ack! | ||
end | ||
end | ||
end |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nevesenin
Could you explain why we need to change original payload?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To add debug information in case of an error.