summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Falcon <seth@opscode.com>2010-10-25 15:24:12 -0700
committersdelano <stephen@opscode.com>2010-11-04 14:00:53 -0700
commit71bcb2793d1a928cbd7a7f29a8e0bd495d17d17f (patch)
tree9cb83e84db7edcda0c23627ebfc11c2037bf76af
parent2c7baa938992b2f66876f2774620d194b61525d9 (diff)
downloadchef-71bcb2793d1a928cbd7a7f29a8e0bd495d17d17f.tar.gz
Fix retry logic for amqp_client CHEF-1808
The retry in amqp_client failed to actually retry when encountering a transient RabbitMQ failure. This patch fixes the retry logic and enhances the tests around retry.
-rw-r--r--chef/lib/chef/index_queue/amqp_client.rb17
-rw-r--r--chef/spec/unit/index_queue_spec.rb57
2 files changed, 29 insertions, 45 deletions
diff --git a/chef/lib/chef/index_queue/amqp_client.rb b/chef/lib/chef/index_queue/amqp_client.rb
index 6f45d39bc1..143deae307 100644
--- a/chef/lib/chef/index_queue/amqp_client.rb
+++ b/chef/lib/chef/index_queue/amqp_client.rb
@@ -31,11 +31,9 @@ class Chef
@amqp_client && amqp_client.connected? && amqp_client.stop
@amqp_client = nil
@exchange = nil
- @queue = nil
end
def stop
- @queue && @queue.subscription && @queue.unsubscribe
@amqp_client && @amqp_client.stop
end
@@ -61,14 +59,6 @@ class Chef
@exchange ||= amqp_client.exchange("chef-indexer", :durable => true, :type => :fanout)
end
- def queue
- unless @queue
- @queue = amqp_client.queue("chef-index-consumer-" + consumer_id, :durable => durable_queue?)
- @queue.bind(exchange)
- end
- @queue
- end
-
def disconnected!
Chef::Log.error("Disconnected from the AMQP Broker (RabbitMQ)")
@amqp_client = nil
@@ -76,11 +66,10 @@ class Chef
end
def queue_for_object(obj_id)
- vnode_tag = obj_id_to_int(obj_id) % VNODES
- queue = amqp_client.queue("vnode-#{vnode_tag}")
retries = 0
+ vnode_tag = obj_id_to_int(obj_id) % VNODES
begin
- yield queue
+ yield amqp_client.queue("vnode-#{vnode_tag}")
rescue Bunny::ServerDownError, Bunny::ConnectionError, Errno::ECONNRESET
disconnected!
if (retries += 1) < 2
@@ -123,4 +112,4 @@ class Chef
end
end
-end \ No newline at end of file
+end
diff --git a/chef/spec/unit/index_queue_spec.rb b/chef/spec/unit/index_queue_spec.rb
index 254a8a8e1c..02cdd514e3 100644
--- a/chef/spec/unit/index_queue_spec.rb
+++ b/chef/spec/unit/index_queue_spec.rb
@@ -227,60 +227,55 @@ describe Chef::IndexQueue::AmqpClient do
end
describe "publishing" do
+
before do
- @queue = FauxQueue.new
+ @queue_1 = FauxQueue.new
+ @queue_2 = FauxQueue.new
+
@amqp_client.stub!(:qos)
- @amqp_client.stub!(:queue).and_return(@queue)
+ #@amqp_client.stub!(:queue).and_return(@queue)
@data = {"some_data" => "in_a_hash"}
end
it "resets the client upon a Bunny::ServerDownError when publishing" do
+ Bunny.stub!(:new).and_return(@amqp_client)
+ @amqp_client.should_receive(:queue).with("vnode-68").twice.and_return(@queue_1, @queue_2)
+
+ @queue_1.should_receive(:publish).with(@data).and_raise(Bunny::ServerDownError)
+ @queue_2.should_receive(:publish).with(@data).and_raise(Bunny::ServerDownError)
+
@publisher.should_receive(:disconnected!).at_least(3).times
- lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| raise Bunny::ServerDownError}}.should raise_error(Bunny::ServerDownError)
+ lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| q.publish(@data)}}.should raise_error(Bunny::ServerDownError)
end
it "resets the client upon a Bunny::ConnectionError when publishing" do
+ Bunny.stub!(:new).and_return(@amqp_client)
+ @amqp_client.should_receive(:queue).with("vnode-68").twice.and_return(@queue_1, @queue_2)
+
+ @queue_1.should_receive(:publish).with(@data).and_raise(Bunny::ConnectionError)
+ @queue_2.should_receive(:publish).with(@data).and_raise(Bunny::ConnectionError)
+
@publisher.should_receive(:disconnected!).at_least(3).times
- lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| raise Bunny::ConnectionError}}.should raise_error(Bunny::ConnectionError)
+ lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| q.publish(@data)}}.should raise_error(Bunny::ConnectionError)
end
it "resets the client upon a Errno::ECONNRESET when publishing" do
+ Bunny.stub!(:new).and_return(@amqp_client)
+ @amqp_client.should_receive(:queue).with("vnode-68").twice.and_return(@queue_1, @queue_2)
+
+ @queue_1.should_receive(:publish).with(@data).and_raise(Errno::ECONNRESET)
+ @queue_2.should_receive(:publish).with(@data).and_raise(Errno::ECONNRESET)
+
@publisher.should_receive(:disconnected!).at_least(3).times
- lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| raise Errno::ECONNRESET}}.should raise_error(Errno::ECONNRESET)
+ lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| q.publish(@data)}}.should raise_error(Errno::ECONNRESET)
end
end
- it "creates a queue bound to its exchange with a temporary UUID" do
- @amqp_client.stub!(:qos)
-
- a_queue_name = /chef\-index-consumer\-[0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12}/
-
- @queue = mock("Bunny::Queue")
- @amqp_client.should_receive(:queue).with(a_queue_name, :durable => false).and_return(@queue)
- @queue.should_receive(:bind).with(@exchange)
- @publisher.queue.should == @queue
- end
-
- it "creates a durable queue bound to the exchange when a UUID is configured" do
- expected_queue_id = "aaaaaaaa-bbbb-cccc-dddd-eeee-ffffffffffffffff"
- expected_queue_name = "chef-index-consumer-#{expected_queue_id}"
- Chef::Config[:amqp_consumer_id] = expected_queue_id
- @amqp_client.stub!(:qos)
-
- @queue = mock("Bunny::Queue")
- @amqp_client.should_receive(:queue).with(expected_queue_name, :durable => true).and_return(@queue)
- @queue.should_receive(:bind).with(@exchange)
- @publisher.queue.should == @queue
- end
-
it "stops bunny and clears subscriptions" do
bunny_client = mock("Bunny::Client")
- queue = mock("Bunny::Queue", :subscription => true)
@publisher.instance_variable_set(:@amqp_client, bunny_client)
- @publisher.instance_variable_set(:@queue, queue)
bunny_client.should_receive(:stop)
- queue.should_receive(:unsubscribe)
@publisher.stop
end