922 Commits

Author SHA1 Message Date
Mehdi Abaakouk
415db68b67 rabbit: redeclare consumers when ack/requeue fail
In case the acknowledgement or requeue of a message fail,
the kombu transport can be disconnected

In this case, we must redeclare our consumers.

This changes fixes that.

This have no tests because the kombu memory transport we use in our tests
cannot be in disconnected state.

Closes-bug: #1448650

Change-Id: I5991a4cf827411bc27c857561d97461212a17f40
2015-05-12 10:19:42 +02:00
Mehdi Abaakouk
0c954cffa2 Bump kombu and amqp requirements
We at least need these versions of amqp and kombu to have
a working heartbeat support.

Related-bug: #1436788
Closes-bug: #1436769
Closes-bug: #1408830

Change-Id: I61440c5ccf2b540fe9a1e868bdcae9f5d2cf8422
2015-05-12 10:19:42 +02:00
Jenkins
a5451eed35 Merge "rabbit: fix exception path in queue redeclaration" 2015-05-11 21:12:31 +00:00
Jenkins
445297c2ea Merge "rabbit: fix consumers declaration" 2015-05-11 21:10:28 +00:00
Jenkins
e1e2abaed8 Merge "rabbit: remove unused consumer interfaces" 2015-05-11 21:09:01 +00:00
OpenStack Proposal Bot
48eb5e19cc Updated from global requirements
Change-Id: Idafb42a726b25296d7a44d33361120de4e4bd60b
2015-05-11 15:51:26 +00:00
Mehdi Abaakouk
3c2e9650d1 rabbit: fix exception path in queue redeclaration
This removes a TODO, that was not possible before the consumer code
refactoring.

Now, we can just catch the right exception instead of catching
everything and pray.

Change-Id: Id6203d79d4b2f027e5c6cd952c99fcd0967ecb3c
2015-05-11 08:29:34 +02:00
Mehdi Abaakouk
2c3c8a3a55 rabbit: fix consumers declaration
When a consumer is declared after we have started to consume
amqp, its queue is never consumed.

This fixes that.

Closes bug: #1450342

Change-Id: I9f2e7d83283504dfe762ac88384efde0f7b52d47
2015-05-11 08:29:34 +02:00
Mehdi Abaakouk
b737a92afd rabbit: remove unused consumer interfaces
The consumer code is over engineered, it allows to override
everything, but the override is always done with functools.partial.

None of the child Class have the same signature, sometimes
the constructor use the parameter name as the parent class but for
a different purpose, that makes the code hard to read.

It's was never clear which options is passed to the queue and the
exchange at this end to kombu.

This changes removes all of that stuffs, and only use the kombu
terminology for consumer parameters.

Alse we don't hardcode anymore the tag and the channel in the consumer
class, to allow to change them without recreating a consumer object
in the futur.

Change-Id: Ie341f0c973adbda9a342cb836867345aa42652d1
2015-05-11 08:29:34 +02:00
Mehdi Abaakouk
2d81577fa1 rabbit: remove unused code
We never cancel queues...

Change-Id: Ib83c00971da11b364e7ef19e60c472eaa4e654eb
2015-05-11 08:29:34 +02:00
Mehdi Abaakouk
cca84f66d4 rabbit: Remove unused stuffs from publisher
The publisher code is over engineered, it allows to override
everything, but this is never used.

None of the child Class have the same signature, sometimes
the constructor use the parameter name as the parent class but for
a different purpose, that make the code hard to read.

It's was never clear which options is passed to the queue and the
exchange at this end to kombu.

This changes removes all of that stuffs, and only use the kombu
terminology for publisher parameters.

Change-Id: I3cebf3ed1647a3121dcf33e2160cf315486f5204
2015-05-11 08:29:34 +02:00
Jenkins
87137e7af0 Merge "zmq: Add support for ZmqClient pooling" 2015-05-11 01:49:21 +00:00
Jenkins
c5066c3cc2 Merge "Add RequestContextSerializer" 2015-05-11 01:44:48 +00:00
OpenStack Proposal Bot
ef58534877 Updated from global requirements
Change-Id: I8dd4af49c069123bac52fcf312a1ae6e20728e6f
2015-05-07 23:36:42 +00:00
Victor Sergeyev
e888daafee Add RequestContextSerializer
This serializer available (with some differences) in ceilometer,
cinder, designate, heat, ironic, magnum, manila, neutron, nova, trove.
So we can move it to the common code and re-use (or inherit from it) in
OpenStack projects

Change-Id: I0d68b1d98c2214a5d45b65146ac2d19e5f6f5953
2015-05-07 12:07:47 +03:00
OpenStack Proposal Bot
b46e52f536 Updated from global requirements
Change-Id: I3d4e56a47aec37fd69021281aa895b5d3f05ab8c
2015-05-06 16:08:56 +00:00
Mehdi Abaakouk
6c91066c72 rabbit/qpid: simplify the consumer loop
The consumer loop is over engineered, it returns unused return,
iterconsume creates an iterator directly consumed by 'consume' without
special handling, and in some case kombu error callback are called when
the iterator is stopped and log useless error.

And in reality the consumer is always called when limit=1.

This change simplifies that, by removing the loop and removes all
returns stuffs.

Closes bug: #1450336

Change-Id: Ia2cb52c8577b29e74d4d2b0ed0b535102f2d55c7
2015-05-05 08:26:00 +02:00
OpenStack Proposal Bot
5b9fb69802 Updated from global requirements
Change-Id: I6dc8b32ee5a49fa1c24f04c9431955ea2290a44f
2015-05-04 18:50:41 +00:00
Jenkins
d9661903c1 Merge "Add JsonPayloadSerializer serializer" 2015-05-03 23:15:22 +00:00
OpenStack Proposal Bot
0941982786 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: Icad917d28765557a3d9f5b6189e65932e0705cd3
2015-05-03 06:07:54 +00:00
Brant Knudson
60624a62a4 Fix missing space in help text
The help text for the notification_driver option was missing a
space.

Change-Id: I7ccad49c308b04d8fd8e45cb2b0b937f2ca8b189
2015-04-29 09:47:02 -05:00
James Page
de015d5c83 zmq: Add support for ZmqClient pooling
To avoid creating a new ZMQ connection for every message sent
to a remote broker, implement pooling and re-use of ZmqClient
objects and associated ZMQ context.

A pool is created for each remote endpoint (keyed by address);
the size of each pool is configured using rpc_conn_pool_size.

All outbound message client connections are pooled.

Closes-Bug: 1384113
Change-Id: Ia55d5c310a56e51df5e2f5d39e561a4da3fe4d83
2015-04-26 11:01:04 +01:00
Jenkins
6a1d3542ea Merge "Port ZMQ driver to Python 3" 2015-04-24 23:32:40 +00:00
Jenkins
712dcc4ca4 Merge "Enable eventlet dependency on Python 3" 2015-04-24 21:46:37 +00:00
Jenkins
9c149331c5 Merge "Fix test_matchmaker_redis on Python 3" 2015-04-24 14:26:06 +00:00
Victor Stinner
50204eea26 Enable eventlet dependency on Python 3
Bump eventlet to 0.17.3, the first release fully supporting Python 3
with monkey-patching.

Add aioeventlet and trollius dependencies for the aioeventlet
executor on Python 3.

This change enables tests of eventlet and aioeventlet executors on
Python 3.

Add futures to Python 3 dependencies even if it's not needed, it's
required to workaround a bug in tox.

Depends-on: I73e3056b5e8b9ce710c9c2d59fc5be8e03e28d2a
Change-Id: I0efae1c91c5d830156b867d7d21b5c0065094665
2015-04-24 14:26:04 +02:00
Victor Sergeyev
e3fa3ca84b Add JsonPayloadSerializer serializer
JsonPayloadSerializer exists in a several OpenStack projects such as
cinder, ironic, magnum, nova, trove so there is a sense to keep it in
oslo.messaging to avoid of code duplication.

Change-Id: I77a6e5e3e717b0afcf17b6200d5b8ff5db6e3262
2015-04-24 11:38:16 +03:00
Victor Stinner
6aff6c371f Fix test_matchmaker_redis on Python 3
redis.smembers(str) returns a list of byte strings.

I missed test failures when I submited my patch to enable redis on
Python 3. I didn't notice that redis tests are skipped when no local
redis server is running.

Change-Id: Ib9ec4e05eb9abd51613f32c93118a1c76649798a
2015-04-21 10:09:31 +02:00
Mehdi Abaakouk
287a4f56f4 Disable and mark heartbeat as experimental
Due to some discovered issues since heartbeat is enabled by default.
Specially #1436788, that needs to fix the underlying library, too.
So, according to the discution here:
https://bugs.launchpad.net/oslo.messaging/+bug/1436769/comments/10

We decide to mark the implementation as experimental and disable it by default.

Related-bug: #1436788
Related-bug: #1436769
Change-Id: Ib7c55977f976bdbbc8df4ad5915e0433cbf84a17
2015-04-17 17:53:46 +02:00
Doug Hellmann
9dd84417fb Uncap library requirements for liberty
Change-Id: I24ae55375016d58db0a3e5f810b702c2270e9158
Depends-On: Ib948b756b8e6ca47a4c9c44c48031e54b7386a06
2015-04-16 18:05:16 +00:00
Victor Stinner
45ca27a8a7 Port ZMQ driver to Python 3
* Fix bytes/unicode issues in the ZMQ driver
* Add pyzmq test dependency on Python 3
* Enable (indirectly) ZMQ driver tests on Python 3

Change-Id: I812f1ec7ad2dcd8e16af70d6f8f9bc3cf7a2225c
Depends-on: I0efae1c91c5d830156b867d7d21b5c0065094665
2015-04-16 15:50:03 +02:00
Jenkins
1305d3e3b8 Merge "Use unittest.mock on Python 3" 2015-04-16 10:13:12 +00:00
Victor Stinner
72c501454e Use unittest.mock on Python 3
The mock module has been added to Python 3.3 as unittest.mock.

The third party mock module doesn't seem to be maintained anymore: the
last commit was in April 2013.

unittest.mock is more recent, has less bugs and is compatible with
Python 3.4. There are bugs on Python 3 in the third party mock module,
examples:

* https://code.google.com/p/mock/issues/detail?id=225
* https://code.google.com/p/mock/issues/detail?id=234

Oslo Messaging hits these issues when running tests on Python 3.4.

Import oslotest to setup six.moves for mock.

Change-Id: Ic160101695cea67eb9bbbfcaddb8d3dac64e6804
2015-04-16 00:07:48 +02:00
Victor Stinner
a00d075312 Enable redis test dependency on Python 3
This change enables test_matchmaker_redis on Python 3.

Change-Id: If50316f96b32f15d8226ece04a265ed0b3362e9b
2015-04-15 11:45:53 +02:00
Jenkins
57cde6b3ab Merge "Remove amqp driver 'unpacked content' logging" 2015-04-15 08:02:01 +00:00
Assaf Muller
9ef3fa8201 Remove amqp driver 'unpacked content' logging
Different OpenStack processes log that line when idle, but it doesn't
offer actionable information to developers or users. Ideally process
logs should be silent when idle, even in debug mode.

Here's a sample:
http://paste.openstack.org/show/201371/

Change-Id: Ib4f63d590a6f5ed295fae12dac12897007b12879
2015-04-10 11:27:09 -04:00
Jenkins
7531f8473a Merge "Add pypi download + version badges" 2015-04-10 14:40:52 +00:00
Jenkins
cf9468dfdb Merge "Updated from global requirements" 2015-04-08 13:12:23 +00:00
Jenkins
133faeba24 Merge "Document notification_driver possible values" 2015-04-08 02:37:38 +00:00
OpenStack Proposal Bot
ef3575d68f Updated from global requirements
Change-Id: I728fcd5d031f83bbda558fa75ac47c2db9725bca
2015-04-07 21:58:56 +00:00
Joshua Harlow
4decea13cb Add pypi download + version badges
Change-Id: Ia49b93afd8e829c1ef47a52596df9580cecefc2a
2015-04-07 09:18:52 -07:00
Jenkins
549f3ce752 Merge "Fix typo in oslo_messaging/_drivers/protocols/amqp/opts.py" 2015-04-06 23:17:37 +00:00
Dan Prince
48441a64a6 Fix TypeError caused by err_msg formatting
The retry variable can be None which causes this exception to be
formatted incorrectly. Switching from %(retry)d to %(retry)s
should handle the case where retry is None more gracefully.

Change-Id: I592ea3e44506afb4a676d8dbe1e659a0e649424e
Closes-bug: #1440755
2015-04-06 13:10:51 -04:00
Mitsuhiro SHIGEMATSU
6a83bfbf35 Fix typo in oslo_messaging/_drivers/protocols/amqp/opts.py
This typo affects a lot of projects.

Change-Id: I98e770d1a585fae58282dc1739107bb472eaca20
2015-04-07 00:02:02 +09:00
Davanum Srinivas
d214770b2b Document notification_driver possible values
Add list of drivers to help and FAQ.

Closes-Bug: #1440480
Change-Id: Ia0ea4693f88aa7550e55e7fb63111065ad9b6c3b
2015-04-06 10:12:08 -04:00
gtt116
07c3e8b049 Do not skip functional test for amqp driver
Since bug #1438742 is fixed, enable tests.

Change-Id: Id05c04e1a1c7e0f162e3105792ad47bd44482d69
2015-04-03 07:40:51 +00:00
Jenkins
6ae44f33e8 Merge "Add functional test for notify.logger" 2015-04-02 20:14:14 +00:00
gtt116
5ec72e8c87 Add functional test for notify.logger
To make sure notify.logger always play well with messaging(v2) driver.
Achieve this by seting up a logger with target logging handler, doing real
logging, finally check notifications that receive from message broker.

Change-Id: I234457974ca48689b9dfc9f7c72b4ea37a57a40b
2015-04-01 02:03:39 +00:00
Kenneth Giusti
6f4e32ad53 Properly deserialize received AMQP 1.0 messages
Change-Id: I5c27c06ca4f5b90e5c54a9519b70f9be0232abff
Closes-bug: #1438742
2015-03-31 11:31:29 -04:00
Jenkins
711f4187d4 Merge "Make notify driver messaging play well with publish_errors" 2015-03-30 10:45:52 +00:00