1071 Commits

Author SHA1 Message Date
Davanum Srinivas
e1fadfc706 Added trace logging for debuggability
Pushing upstream a patch we used for debugging several rabbit
issues in an old fork of oslo.messaging. Use the new
LOG.trace() functionality from oslo.log 1.8.4

Co-Authored-by: Bogdan Dobrelya <bdobrelya@mirantis.com>
Co-Authored-by: Alexei Kornienko <akornienko@mirantis.com>
Co-Authored-by: Oleksii Zamiatin <ozamiatin@mirantis.com>

Change-Id: I0033bba47002f9685479bbd55b29746a06563a51
2015-08-16 22:36:31 -04:00
Davanum Srinivas
02a2e6d380 Log warning instead of raising RuntimeError
Changes introduced in:
I0fc1717e3118bc1cd7b9cd0ccc072251cfb2c038

are causing Neutron to fail as summarized by Doug in:
http://markmail.org/message/2xlclp7gqnqpkted

So we should log warnings instead and make sure we
find which projects are affected (using logstash) and
fix them. Once we do that, then we can switch this
back to raise RuntimeError(s)

Change-Id: I9dce272246b89f3ec63aefcf11d385fd2d21da6e
2015-08-16 22:23:37 -04:00
OpenStack Proposal Bot
e72dc250b3 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: Ic71fca8db681f54ee7b71fddb35123ac49d9074c
2015-08-05 06:17:18 +00:00
Victor Sergeyev
1b01d7cee1 Fix BaseDriver.listen_for_notifications() signature
listen_for_notifications() accepts `pool` argument in driver classes, so
we should add this argument to the base abstract class as well.

Change-Id: Ic52924bb66c8a89cdc90102b1171427806e9a823
2015-08-04 15:56:49 +03:00
OpenStack Proposal Bot
5ea78625c0 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: I4e960de796e7d4f0c5126f91201e72c572087e87
2015-08-04 06:29:52 +00:00
OpenStack Proposal Bot
16ef20c0b6 Updated from global requirements
Change-Id: Ib82c24c5b29655f21d9b5f488ebf16c7c89d1b26
2015-08-04 00:56:56 +00:00
Jenkins
8374f8a6cd Merge "Ensures that some assumptions are true." 2015-08-03 21:06:31 +00:00
OpenStack Proposal Bot
41531d6043 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: If29b3ed37ecb77346ae14676a87ba6ae50686987
2.2.0
2015-07-31 06:54:35 +00:00
Jenkins
00fa37f2c8 Merge "Fully use futurist code-base to abstract concurrent.futures away" 2015-07-30 09:40:47 +00:00
Mehdi Abaakouk
0dafde9407 Ensures that some assumptions are true.
It's documented, the application consumer must not use wait before stop.
but this is not enforced, so enforce it

Also the code assume start/stop/wait are called from the same thread,
but this is not enforced, so enforce it.

A common broken usage is:

    server = oslo.messaging.get_rpc_server(..., executor='eventlet')
    t = threading.Thread(target=server.start)
    t.daemon = True
    t.start()
    ...foobar code...
    server.stop()
    server.wait()

With monkey patching, start() will do a context switch and then stop()
is called but start is unfinished, that can cause unexpected behavior.

This patch fixes these issues by making all of this explicit.

Closes-bug: #1465850
Closes-bug: #1466001

Change-Id: I0fc1717e3118bc1cd7b9cd0ccc072251cfb2c038
2015-07-30 07:35:06 +02:00
Jenkins
d1c546e5bb Merge "Imported Translations from Transifex" 2015-07-29 17:02:10 +00:00
OpenStack Proposal Bot
8ce1fcf262 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: I453012597995d5b93501d9a1c02831bf9f1e4011
2015-07-29 06:39:13 +00:00
OpenStack Proposal Bot
53111dbf57 Updated from global requirements
Change-Id: I1fe92463973b429d60012d87230fbe333550c0b8
2015-07-29 03:49:59 +00:00
Joshua Harlow
93eb0febc7 Fully use futurist code-base to abstract concurrent.futures away
Change-Id: Iafa789f20d1ac365fe9da2ede2b2fa03a3b8720f
2015-07-23 11:58:49 -07:00
OpenStack Proposal Bot
577b93b048 Imported Translations from Transifex
For more information about this automatic import see:
https://wiki.openstack.org/wiki/Translations/Infrastructure

Change-Id: I6a163c5ee74ac047c2463d257ce73f4e05f16f1e
2015-07-23 06:14:35 +00:00
Jenkins
fae0daecdc Merge "Updated from global requirements" 2015-07-22 22:54:28 +00:00
Jenkins
25b9cdc9eb Merge "Allow a forward slash as a part of the user/password" 2015-07-22 17:26:59 +00:00
OpenStack Proposal Bot
a06e152da9 Updated from global requirements
Change-Id: I2c6205d9e8483c7c3b792b54458e585800c0b4e5
2015-07-22 05:07:52 +00:00
Doug Hellmann
1b390c34b0 add plugin documentation for executors and notifiers
Document the plugins available for executors and notifiers.

Fix the formatting in the aioeventlet executor so the docstring renders
properly.

Change-Id: I7709b65f5aa68fab3822b4de11640309aa07b1d7
2015-07-20 18:30:00 +00:00
Mehdi Abaakouk
d94d6d6892 Allows to change defaults opts
This change introduces to possibility for the consumer application
to change the default oslo.messaging config options.

Same API interface as oslo.db have been taken.
The first option is executor_thread_pool_size.

This option was called rpc_thread_pool_size, but because it's used by
notification and rpc 'executor_thread_pool_size' looks a better name.

Changing executor_thread_pool_size default will be useful for ceilometer
the default of 64 is really to small to consume many notifications at
once for batching them. When is clearly sufficient for rpc stuffs.

Change-Id: Iea0d7a72e38d27c600403c815258aa5eee0d0c8c
2015-07-20 15:37:16 +02:00
Jenkins
10bc6244aa Merge "Update 'impl_eventlet' docstring to reflect actual impl." 2015-07-19 16:20:27 +00:00
Jenkins
431f22cfa5 Merge "Fix amqp connection pool leak in ConnectionContext" 2015-07-18 02:50:23 +00:00
Davanum Srinivas
adcd0807d6 Allow a forward slash as a part of the user/password
quote method has a safe parameter which is set to '/' so when
the end user has a / in the rabbit_password then we end up leaving
that in the url which ends up looking like:

amqp://stackrabbit:pass/word@10.0.0.9:5672//

Which is clearly invalid, so we should set safe parameter to '' which
allows the url to be constructed properly (see transport.py
TransportURL.__str__ method works this work)

Closes-Bug: #1474933
Change-Id: I14fb54440d0925f3676e18d13182ed0fa9c34ca2
2015-07-17 22:26:00 -04:00
Joshua Harlow
cb210cecb7 Update 'impl_eventlet' docstring to reflect actual impl.
Change-Id: I6131fe747c5fb4ef6319a9c22ce029ba7a8e0268
2015-07-17 12:42:20 -07:00
OpenStack Proposal Bot
6c6efe78ca Updated from global requirements
Change-Id: I86096675bad3e9f5c6f9321b7bb71d34aaeb6e1e
2015-07-17 16:16:54 +00:00
Jenkins
b9e7623c30 Merge "Don't install pyngus on Python 3" 2015-07-17 13:50:23 +00:00
Jenkins
1203df8f9f Merge "tests: adjusts an expected time for gate" 2015-07-17 12:16:57 +00:00
Jenkins
6af082ac42 Merge "Remove oslo namespace package" 2015-07-17 09:19:03 +00:00
Mehdi Abaakouk
91705a1d91 tests: adjusts an expected time for gate
Sometimes the gate fails because a test take a bit more time than
expected, this change adjusts this.

Closes-bug: #1475502
Change-Id: I7396c9de82aab18e84c0e08cc1f6f0903884130a
2015-07-17 11:07:59 +02:00
Jenkins
02c020b27e Merge "Ensure callback variable capture + cleanup is done correctly" 2015-07-17 08:42:02 +00:00
OpenStack Proposal Bot
3e78c1bffa Updated from global requirements
Change-Id: I849a458367c822435f226318462ddda5c8c356be
2015-07-16 23:19:51 +00:00
Joshua Harlow
02a3a39814 Ensure callback variable capture + cleanup is done correctly
It appears the the callback variable that was being called on
future done was not the right one, due to the lambda capture
mechanism referring to a lazy variable which would potentially
be a different callback by the time the future would finish so
make sure we capture the right one and ensure the future has access
to it.

This adds a helper method that submission will go through
to ensure that the callback variable is correctly captured
in the created lambda and also ensures that the incomplete futures
list is cleaned up (when the future is done).

The notification listener tests use now eventlet to show up this
issue that doesn't occur with blocking executor.

Closes-bug: #1474943

Closes-bug: #1475307

Change-Id: I23e393d504662532572b5b344b87387be6d7bcb1
2015-07-16 22:05:58 +00:00
Doug Hellmann
03265410e0 Remove oslo namespace package
Blueprint remove-namespace-packages

Depends-on: I2eeef93ee2e61a721c69f62add819f93f62f077d
for openstack/ceilometer
Depends-on: I26390dd908769be5f1a5b70be22d3b98e3a45563
for openstack/ceilometermiddleware
Depends-on: Ifa8baab33cdb3e606cf175a8c29c3a4ef6c44480
for openstack/glance
Depends-on: I029c3260051aa48cfaae428c096c1ac7b43b2bd2
for openstack/ceilometermiddleware

Change-Id: I8c5595bbafa82db33f62fa47d214f5cb756a2639
2015-07-16 17:47:16 +00:00
OpenStack Proposal Bot
01254d1891 Updated from global requirements
Change-Id: I2dab32141f0e661ebd62eeb3fc0eba5912186b6a
2015-07-15 20:44:52 +00:00
Victor Stinner
525e3a2b12 Don't install pyngus on Python 3
pyngus is not compatible with Python 3 yet.

Change-Id: I54431c0a40c46d3027116c07e2bac5cc1ef76a3a
Closes-Bug: #1474852
2015-07-15 15:45:35 +02:00
Oscar Huang
d5780ad357 Fix amqp connection pool leak in ConnectionContext
When failed in connection.reset(), the current code simply
discards the broken connection, without returning a new one
to the pool, nor adjust pool counter. It results in a connection
leak and eventually blocks the thread.

It is fixed by returning a new connection into the pool.

Change-Id: I2b2c23def718d8f2409f9fc415441ac88d40f5b9
Closes-Bug: #1474698
2015-07-15 10:29:24 +00:00
Jenkins
8a9b5d44ae Merge "Executor docstring & attribute tweaks" 2015-07-15 00:56:55 +00:00
Joshua Harlow
c5389bebce Executor docstring & attribute tweaks
Adjust some docstrings to better align with the class
they are attached to. Also changes some docstrings for
the pooled executor (as it is an abstraction on-top of
async executors, and is not tied to threads anymore) and
correctly denote this on its attributes that others can
and are overriding. 

Change-Id: I2eaaeed3aa0ae64eb5c82843381b7518ac508ac1
2015-07-14 15:43:04 +00:00
Jenkins
ead733a2dc Merge "Use the warn_eventlet_not_patched util function" 2015-07-14 10:40:56 +00:00
Joshua Harlow
4df24f7d1c Use the warn_eventlet_not_patched util function
This code can share the check for eventlet and warn
when the thread module is not patched (which will be
a problem).

When it is not patched the following warning gets
emitted:

"RuntimeWarning: It is highly recommended that when eventlet"
" is used that the ['thread'] modules are monkey patched when"
" using the 'oslo.messaging eventlet executor' (to avoid spurious"
" or unexpected lock-ups and/or hangs)"

This will not be needed once a new futurist release happens
but until then standardize on using that util library to emit
these warnings.

Change-Id: I7277fe19a73d8094a0acf033c75dc881e0d1e533
2015-07-13 16:32:38 -07:00
Doug Hellmann
857ccabc9c Drop use of 'oslo' namespace package
The Oslo libraries have moved all of their code out of the 'oslo'
namespace package into per-library packages. The namespace package was
retained during kilo for backwards compatibility, but will be removed by
the liberty-2 milestone. This change removes the use of the namespace
package, replacing it with the new package names. It also adds a local
hacking check to prevent regressions, while disabling style checks in
the "tests" directory, which will be deleted in a subsequent patch.

The patches in the libraries will be put on hold until application
patches have landed, or L2, whichever comes first. At that point, new
versions of the libraries without namespace packages will be released as
a major version update.

Please merge this patch, or an equivalent, before L2 to avoid problems
with those library releases.

Blueprint: remove-namespace-packages
https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages

Change-Id: Iad2ae13c771c99861ca9493c6ab10edcfbd8684a
2015-07-13 21:12:35 +00:00
Jenkins
9eef14f1c0 Merge "Make heartbeat the default" 2015-07-13 11:04:14 +00:00
Jenkins
b48487e65b Merge "Don't reply when we known that client is gone" 2015-07-13 11:03:09 +00:00
Jenkins
0969bfcd89 Merge "Verify that version in 'prepare' is valid" 2015-07-13 11:01:24 +00:00
OpenStack Proposal Bot
f04a321076 Updated from global requirements
Change-Id: If67f874c1761018c8cd2fb138cef9f76a69f9934
2015-07-12 15:21:33 +00:00
Jenkins
2fe968c15d Merge "Updated from global requirements" 2015-07-11 04:29:56 +00:00
Jenkins
0055d79ac2 Merge "Remove usage of contentmanager for executors" 2015-07-11 03:19:49 +00:00
OpenStack Proposal Bot
6dda4a751f Updated from global requirements
Change-Id: If68c8e463dc6f2b8118bb66626b5a73d81053b5d
2015-07-10 20:43:19 +00:00
Doug Hellmann
c7b31385ac Fix mock use for mock 1.1.0
Correct the way we check the calls by using the proper mock method. Add
a new test to expand coverage of the area being fixed.

Change-Id: I344ee52dd0ea77bc45b6d3e2713ae1ba8b225ffc
2015-07-10 12:22:26 +00:00
Flavio Percoco
168f6cc2bb Make heartbeat the default
When heartbeat was introduced, it couldn't be enabled by default because
it depended on a minimum kombu version that we couldn't bump to at the
end of the release.

Now that Liberty is open and the minimum required version has been
bumped, I'm enabling heartbeat by default. The threshold this patch uses
is `60` which is the one gotten from tests and other deployments. Lets
make sure this is a sande default before merging the patch.

Change-Id: I21c29c328ef9936e76a215ab15962b46247dadd9
2015-07-09 16:05:17 -07:00