*** bobh has quit IRC | 00:04 | |
*** bobh has joined #openstack-oslo | 00:07 | |
*** bobh has quit IRC | 00:12 | |
*** bobh has joined #openstack-oslo | 00:25 | |
*** bobh has quit IRC | 00:45 | |
*** bobh has joined #openstack-oslo | 00:54 | |
*** bobh has quit IRC | 01:36 | |
*** bobh has joined #openstack-oslo | 01:42 | |
*** bobh has quit IRC | 01:44 | |
*** bobh has joined #openstack-oslo | 02:12 | |
*** dave-mccowan has joined #openstack-oslo | 02:21 | |
*** bobh has quit IRC | 02:46 | |
*** bobh has joined #openstack-oslo | 02:53 | |
*** dave-mccowan has quit IRC | 02:54 | |
*** dave-mccowan has joined #openstack-oslo | 02:59 | |
*** dave-mccowan has quit IRC | 03:12 | |
*** bobh has quit IRC | 03:46 | |
*** bobh has joined #openstack-oslo | 04:07 | |
*** bobh has quit IRC | 04:20 | |
*** redrobot has quit IRC | 05:55 | |
*** jbadiapa has joined #openstack-oslo | 06:57 | |
*** rcernin has quit IRC | 07:00 | |
*** tosky has joined #openstack-oslo | 08:14 | |
*** a-pugachev has joined #openstack-oslo | 09:07 | |
*** shardy has joined #openstack-oslo | 09:47 | |
*** e0ne has joined #openstack-oslo | 10:17 | |
*** moguimar has joined #openstack-oslo | 10:24 | |
openstackgerrit | venkata anil proposed openstack/oslo.service master: Avoid eventlet_backdoor listing on same port https://review.openstack.org/627952 | 10:25 |
---|---|---|
*** pbourke has quit IRC | 10:59 | |
*** pbourke has joined #openstack-oslo | 11:01 | |
*** cdent has joined #openstack-oslo | 11:08 | |
*** mattgo has joined #openstack-oslo | 12:43 | |
openstackgerrit | Merged openstack/oslo.cache master: Update the requirements to match global-requirements for dogpile.cache https://review.openstack.org/626532 | 13:02 |
*** njohnston has quit IRC | 13:06 | |
*** njohnston has joined #openstack-oslo | 13:06 | |
*** Guest67237 has joined #openstack-oslo | 13:13 | |
*** Guest67237 is now known as redrobot | 13:13 | |
*** dave-mccowan has joined #openstack-oslo | 14:06 | |
*** shardy has quit IRC | 14:07 | |
*** shardy has joined #openstack-oslo | 14:27 | |
*** raildo has joined #openstack-oslo | 14:44 | |
*** bobh has joined #openstack-oslo | 14:50 | |
*** raildo has quit IRC | 14:51 | |
*** raildo has joined #openstack-oslo | 14:51 | |
*** bnemerryxmas is now known as bnemec | 14:51 | |
*** raildo has quit IRC | 14:55 | |
*** raildo has joined #openstack-oslo | 14:55 | |
*** edmondsw has joined #openstack-oslo | 15:09 | |
*** chhagarw has joined #openstack-oslo | 15:40 | |
*** e0ne has quit IRC | 15:41 | |
openstackgerrit | Dirk Mueller proposed openstack/oslo.rootwrap master: Always close all passed in fds beyond sensible_fd_limit on launch https://review.openstack.org/627991 | 15:45 |
*** mattgo has quit IRC | 16:21 | |
*** a-pugachev has left #openstack-oslo | 16:29 | |
*** bobh has quit IRC | 16:39 | |
openstackgerrit | weizj proposed openstack/oslo.db master: Update hacking version https://review.openstack.org/627654 | 16:52 |
openstackgerrit | weizj proposed openstack/oslo.db master: Update hacking version https://review.openstack.org/627654 | 16:53 |
*** a-pugachev has joined #openstack-oslo | 17:00 | |
*** tosky has quit IRC | 17:23 | |
*** chhagarw has quit IRC | 17:31 | |
*** a-pugachev has quit IRC | 17:32 | |
*** a-pugachev has joined #openstack-oslo | 17:34 | |
*** a-pugachev has quit IRC | 17:49 | |
*** kmalloc has joined #openstack-oslo | 17:50 | |
*** kmalloc has quit IRC | 17:58 | |
*** kgiusti has joined #openstack-oslo | 18:20 | |
*** bobh has joined #openstack-oslo | 18:41 | |
*** bobh has quit IRC | 19:05 | |
*** bobh has joined #openstack-oslo | 19:28 | |
*** bobh has quit IRC | 19:32 | |
*** bobh has joined #openstack-oslo | 19:48 | |
*** bobh has quit IRC | 20:00 | |
*** shardy has quit IRC | 20:00 | |
*** kgiusti has left #openstack-oslo | 20:01 | |
*** kgiusti has joined #openstack-oslo | 20:01 | |
openstackgerrit | Zane Bitter proposed openstack/oslo.utils master: Avoid calling eventlet.event.Event.reset() https://review.openstack.org/627907 | 20:50 |
*** raildo has quit IRC | 20:52 | |
*** cezary_zukowski has joined #openstack-oslo | 21:17 | |
cezary_zukowski | hey | 21:17 |
cezary_zukowski | I wish to share a variable between a number of workers? How to achieve it with oslo library? | 21:18 |
cezary_zukowski | oslo.concurrency? | 21:19 |
*** cdent has quit IRC | 21:27 | |
*** cdent has joined #openstack-oslo | 21:27 | |
*** purplerbot has quit IRC | 21:28 | |
*** purplerbot has joined #openstack-oslo | 21:29 | |
*** cdent has quit IRC | 21:29 | |
*** kgiusti has left #openstack-oslo | 21:30 | |
bnemec | cezary_zukowski: Yeah, take a look at the lockutils module of oslo.concurrency: https://docs.openstack.org/oslo.concurrency/rocky/reference/lockutils.html | 21:40 |
bnemec | And https://docs.openstack.org/oslo.concurrency/rocky/user/index.html | 21:40 |
cezary_zukowski | bnemec: Many thanks, could you point out some examples if any? | 21:42 |
bnemec | cezary_zukowski: There are some examples of synchronizing functions in the second link. | 21:43 |
bnemec | Basically you decorate any function that operates on the shared data and that way only one at a time can be manipulating it. | 21:44 |
bnemec | There are other ways it can be used too, but I think that's the most common. | 21:44 |
cezary_zukowski | bnemec: OK, thanks. Some examples: https://programtalk.com/python-examples/oslo_concurrency.lockutils.lock/ | 21:49 |
*** bobh has joined #openstack-oslo | 21:55 | |
*** bobh has quit IRC | 22:00 | |
*** bobh has joined #openstack-oslo | 22:01 | |
*** tosky has joined #openstack-oslo | 22:30 | |
*** rcernin has joined #openstack-oslo | 22:49 | |
*** e0ne has joined #openstack-oslo | 22:51 | |
*** bobh has quit IRC | 23:01 | |
*** bobh has joined #openstack-oslo | 23:01 | |
*** bobh has quit IRC | 23:06 | |
*** e0ne has quit IRC | 23:19 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!