tommylikehu | hey bnemec, for your comments on this patch: https://review.openstack.org/#/c/593556/, in green thread, the context will not be switched until we explicitly call sleep or the green thread finished? | 00:47 |
---|---|---|
openstackgerrit | TommyLike proposed openstack/oslo.privsep master: Use green thread to process target function https://review.openstack.org/593556 | 00:49 |
*** bobh has joined #openstack-oslo | 01:19 | |
*** bobh has quit IRC | 01:41 | |
*** ducnv has quit IRC | 01:42 | |
*** ducnv has joined #openstack-oslo | 01:46 | |
*** larainema has quit IRC | 02:00 | |
*** bobh has joined #openstack-oslo | 02:15 | |
*** bobh has quit IRC | 02:16 | |
*** bobh has joined #openstack-oslo | 02:16 | |
*** bobh has quit IRC | 02:20 | |
*** phuongnh has joined #openstack-oslo | 02:28 | |
*** dave-mccowan has quit IRC | 03:38 | |
*** nicolasbock has quit IRC | 03:40 | |
*** jbadiapa has quit IRC | 05:01 | |
*** e0ne has joined #openstack-oslo | 05:31 | |
*** snapiri has joined #openstack-oslo | 05:59 | |
*** openstackgerrit has quit IRC | 06:07 | |
*** e0ne has quit IRC | 06:19 | |
*** e0ne has joined #openstack-oslo | 06:20 | |
*** e0ne has quit IRC | 06:20 | |
*** shardy has joined #openstack-oslo | 06:32 | |
*** hoonetorg has quit IRC | 06:39 | |
*** mattgo has joined #openstack-oslo | 06:46 | |
*** hoonetorg has joined #openstack-oslo | 06:46 | |
*** jbadiapa has joined #openstack-oslo | 07:14 | |
*** pcaruana has joined #openstack-oslo | 07:14 | |
*** rcernin has quit IRC | 07:20 | |
*** mattgo has quit IRC | 07:42 | |
*** hoonetorg has quit IRC | 07:55 | |
*** cdent has joined #openstack-oslo | 07:59 | |
*** pbourke has quit IRC | 08:15 | |
*** pbourke has joined #openstack-oslo | 08:17 | |
*** mattgo has joined #openstack-oslo | 08:29 | |
*** e0ne has joined #openstack-oslo | 08:48 | |
*** sambetts|afk is now known as sambetts | 09:18 | |
*** flaper87 has quit IRC | 09:34 | |
*** flaper87 has joined #openstack-oslo | 09:36 | |
*** moguimar has quit IRC | 09:39 | |
*** openstackgerrit has joined #openstack-oslo | 09:44 | |
openstackgerrit | wangxiyuan proposed openstack/oslo.limit master: Add opts file https://review.openstack.org/586760 | 09:44 |
openstackgerrit | wangxiyuan proposed openstack/oslo.limit master: Add limit check func https://review.openstack.org/596520 | 09:44 |
*** moguimar has joined #openstack-oslo | 09:45 | |
*** cdent has quit IRC | 10:02 | |
*** jaosorior has quit IRC | 10:25 | |
*** jaosorior has joined #openstack-oslo | 10:27 | |
*** dave-mccowan has joined #openstack-oslo | 10:35 | |
*** nicolasbock has joined #openstack-oslo | 10:47 | |
*** shardy is now known as shardy_lunch | 10:57 | |
*** ansmith has quit IRC | 11:13 | |
*** cdent has joined #openstack-oslo | 11:15 | |
*** cdent has quit IRC | 11:23 | |
*** rnm has joined #openstack-oslo | 11:34 | |
*** rnm is now known as rmart04 | 11:36 | |
*** threestrands has quit IRC | 11:38 | |
*** rmart04 has quit IRC | 11:40 | |
*** rnm has joined #openstack-oslo | 11:40 | |
*** phuongnh has quit IRC | 11:41 | |
*** rnm has quit IRC | 11:42 | |
*** rnm has joined #openstack-oslo | 11:42 | |
*** rnm is now known as rmart04 | 11:43 | |
*** cdent has joined #openstack-oslo | 11:49 | |
*** dmellado has quit IRC | 11:50 | |
*** jimbobhickville has joined #openstack-oslo | 12:17 | |
*** shardy_lunch is now known as shardy | 12:18 | |
*** oanson has joined #openstack-oslo | 12:30 | |
*** raildo has joined #openstack-oslo | 12:48 | |
*** nizam037 has joined #openstack-oslo | 12:50 | |
*** kgiusti has joined #openstack-oslo | 12:54 | |
*** ansmith has joined #openstack-oslo | 12:57 | |
*** jbadiapa has quit IRC | 13:03 | |
*** bobh has joined #openstack-oslo | 13:04 | |
nizam037 | when the rabbitmq-server is in stopped state and i was trying to execute a openstack heat command it is not thrwing any error. In logs i can see for every 2seconds it keeps retrying to connect to AMQP server. And this retry reaches till 32 seconds. why it does not increases beyond 32seconds. | 13:06 |
nizam037 | even though the default value of rabbit_interval_max= 30 why it is going beyond 30 | 13:08 |
kgiusti | nizam037: what release of oslo.messaging are you using? I think the backoff is exponential to a power of two and probably just checks backoff > rabbit_interval_max (guess only need to check code) | 13:14 |
kgiusti | nizam037: well this is interesting - the value of rabbit_interval_max is passed down the the rabbit kombu library | 13:18 |
kgiusti | nizam037: see https://git.openstack.org/cgit/openstack/oslo.messaging/tree/oslo_messaging/_drivers/impl_rabbit.py#n785 | 13:19 |
kgiusti | nizam037: the value of interval_stepping is set by the rabbit_retry_backoff config variable | 13:20 |
*** jbadiapa has joined #openstack-oslo | 13:22 | |
*** raildo has quit IRC | 13:24 | |
kgiusti | nizam037: so the arguments to that autoretry call is described here: http://docs.celeryproject.org/projects/kombu/en/latest/reference/kombu.html#kombu.Connection.ensure | 13:30 |
kgiusti | nizam037: I'm probably giving you too much detail, sorry :) | 13:30 |
kgiusti | nizam037: that doc says that on retry it will call an errback routine with the interval that will be slept, however.... | 13:31 |
*** raildo has joined #openstack-oslo | 13:31 | |
kgiusti | nizam037: the code that implements this retry overrides the time value when it logs the interval: https://git.openstack.org/cgit/openstack/oslo.messaging/tree/oslo_messaging/_drivers/impl_rabbit.py#n735 | 13:40 |
kgiusti | nizam037: so I need to look at this a bit more but yes I agree that doesn't seem right. | 13:41 |
kgiusti | nizam037: looks like a bug | 13:41 |
*** toabctl has joined #openstack-oslo | 13:44 | |
kgiusti | nizam037: can you open a bug on this https://bugs.launchpad.net/oslo.messaging/+filebug ? I'll follow up on that | 13:51 |
*** jimbobhickville has quit IRC | 13:56 | |
*** jimbobhickville has joined #openstack-oslo | 13:58 | |
nizam037 | sure | 14:07 |
nizam037 | https://bugs.launchpad.net/oslo.messaging/+bug/1789923 | 15:05 |
openstack | Launchpad bug 1789923 in oslo.messaging "Retrying to AMQP server is going beyond the value of rabbit_interval_max " [Undecided,New] - Assigned to Ken Giusti (kgiusti) | 15:05 |
*** pcaruana has quit IRC | 15:12 | |
*** e0ne has quit IRC | 15:27 | |
stephenfin | dhellmann: totally off-topic question: are you aware of any templating library w/ support for logic in Python's stdlib in recent releases? Something like Jinja2, Django templates | 15:28 |
*** bobh has quit IRC | 15:35 | |
jimbobhickville | https://realpython.com/python-f-strings/ maybe would fit the bill? | 16:08 |
stephenfin | jimbobhickville: Not quite enough logic there, unfortunately. I was thinking support for if-else, for loops etc. in the template itself | 16:11 |
stephenfin | jimbobhickville: Having search python.org, it seems it's not something that's available. Jinja2 it is | 16:11 |
stephenfin | *searched | 16:11 |
*** shachar has joined #openstack-oslo | 16:12 | |
jimbobhickville | so, is taskflow kind of dead at this point? I’ve been out of the loop a couple years, but was hoping to get back into it a little. Seems like it’s mostly just requirements update patches for at least a year. I don’t see Josh around on IRC any more either. | 16:13 |
*** snapiri has quit IRC | 16:14 | |
stephenfin | jimbobhickville: I think the nova-powervm guys use it pretty heavily. Can't say anything about the library itself though | 16:16 |
*** moguimar has quit IRC | 16:21 | |
*** sambetts is now known as sambetts|afk | 16:31 | |
*** jbadiapa has quit IRC | 16:35 | |
*** bnemec has quit IRC | 16:35 | |
*** rmart04 has quit IRC | 16:41 | |
*** mattgo has quit IRC | 16:49 | |
*** shardy has quit IRC | 16:56 | |
dhellmann | stephenfin : nothing with logic. I don't expect them to add anything with such a rich source of alternatives outside the stdlib. | 16:57 |
dhellmann | jimbobhickville : it's used, but most of the maintainers are not working on it (or openstack?) any more. So we're looking for assistance there. | 16:57 |
*** bnemec has joined #openstack-oslo | 17:17 | |
*** phuongnh has joined #openstack-oslo | 17:37 | |
*** phuongnh has quit IRC | 17:41 | |
bnemec | jimbobhickville: There are projects using taskflow in OpenStack still so we've been maintaining it functionally. There isn't much in the way of new feature development going on though. | 17:43 |
*** dmellado has joined #openstack-oslo | 17:44 | |
*** bobh has joined #openstack-oslo | 18:27 | |
jimbobhickville | yeah, sorry, I didn’t mean to be critical or say it wasn’t being maintained, just seems like nothing has been added in a while. Last I worked on it with Josh a couple years ago, we had trouble getting features merged because we needed another core to +2 the reviews. | 18:45 |
*** toabctl has quit IRC | 18:51 | |
*** nizam037 has quit IRC | 18:52 | |
*** toabctl has joined #openstack-oslo | 19:07 | |
*** ansmith has quit IRC | 19:15 | |
*** e0ne has joined #openstack-oslo | 19:34 | |
*** bobh has quit IRC | 20:06 | |
*** bobh has joined #openstack-oslo | 20:08 | |
openstackgerrit | Ben Nemec proposed openstack/oslo.log stable/rocky: Filter args dict in JSONFormatter https://review.openstack.org/598338 | 20:09 |
*** kgiusti has left #openstack-oslo | 20:18 | |
*** mugsie has quit IRC | 20:25 | |
*** e0ne has quit IRC | 20:29 | |
*** mugsie has joined #openstack-oslo | 20:39 | |
*** harlowja has joined #openstack-oslo | 20:43 | |
openstackgerrit | Ben Nemec proposed openstack/oslo.cache master: Drop expired connections before retrieving from the queue https://review.openstack.org/598348 | 20:44 |
*** bobh has quit IRC | 20:46 | |
*** rmart04 has joined #openstack-oslo | 20:47 | |
*** raildo has quit IRC | 20:50 | |
*** rmart04 has quit IRC | 21:16 | |
openstackgerrit | Ben Nemec proposed openstack/oslo.cache master: Drop expired connections before retrieving from the queue https://review.openstack.org/598348 | 21:26 |
*** dmellado has quit IRC | 21:31 | |
*** dmellado has joined #openstack-oslo | 21:31 | |
openstackgerrit | Michael Bayer proposed openstack/oslo.db master: Fix FOREIGN KEY messages for MariaDB 10.2, 10.3 https://review.openstack.org/598355 | 21:36 |
*** mattgo has joined #openstack-oslo | 21:37 | |
*** mattgo has quit IRC | 21:45 | |
*** rcernin has joined #openstack-oslo | 21:49 | |
openstackgerrit | Michael Bayer proposed openstack/oslo.db master: Fix FOREIGN KEY messages for MariaDB 10.2, 10.3 https://review.openstack.org/598355 | 21:53 |
*** jimbobhickville has quit IRC | 22:13 | |
*** purplerbot has quit IRC | 22:16 | |
*** purplerbot has joined #openstack-oslo | 22:17 | |
*** jimbobhickville has joined #openstack-oslo | 22:24 | |
openstackgerrit | Ben Nemec proposed openstack/oslo.service master: Stop asserting on Eventlet internals https://review.openstack.org/598384 | 22:35 |
* cdent promises to return to env vars for oslo_config soon | 22:54 | |
*** cdent has quit IRC | 23:22 | |
*** rcernin has quit IRC | 23:56 | |
*** rcernin has joined #openstack-oslo | 23:56 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!