*** kushalagrawal has quit IRC | 00:09 | |
*** kushalagrawal has joined #openstack-mistral | 00:09 | |
*** yangyape_ has quit IRC | 00:33 | |
*** threestrands has joined #openstack-mistral | 00:43 | |
*** haint_ has quit IRC | 01:04 | |
*** yangyapeng has joined #openstack-mistral | 01:20 | |
*** zhurong has joined #openstack-mistral | 01:30 | |
*** kushalagrawal has quit IRC | 01:33 | |
*** kushalagrawal has joined #openstack-mistral | 01:34 | |
*** threestrands has quit IRC | 02:01 | |
*** daidv has joined #openstack-mistral | 02:06 | |
*** threestrands has joined #openstack-mistral | 02:16 | |
*** threestrands has quit IRC | 02:16 | |
*** threestrands has joined #openstack-mistral | 02:16 | |
openstackgerrit | MaoyangLiu proposed openstack/mistral master: correct spelling mistakse workfow to workflow https://review.openstack.org/540696 | 02:21 |
---|---|---|
*** zhurong has quit IRC | 02:43 | |
*** kushalagrawal has quit IRC | 03:03 | |
*** kushalagrawal has joined #openstack-mistral | 03:07 | |
*** zhenguo has joined #openstack-mistral | 03:21 | |
*** hardikjasani has joined #openstack-mistral | 03:49 | |
*** kushalagrawal has quit IRC | 04:03 | |
*** kushalagrawal has joined #openstack-mistral | 04:05 | |
*** threestrands has quit IRC | 04:07 | |
*** threestrands has joined #openstack-mistral | 04:19 | |
*** threestrands has quit IRC | 04:19 | |
*** threestrands has joined #openstack-mistral | 04:19 | |
*** kushalagrawal has quit IRC | 04:27 | |
*** kushalAgrawal has joined #openstack-mistral | 04:32 | |
*** threestrands has quit IRC | 04:36 | |
*** threestrands has joined #openstack-mistral | 04:37 | |
*** threestrands has quit IRC | 05:07 | |
*** zhenguo has quit IRC | 05:31 | |
*** zhurong has joined #openstack-mistral | 05:38 | |
*** jaosorior has joined #openstack-mistral | 05:39 | |
*** threestrands has joined #openstack-mistral | 05:42 | |
*** threestrands has quit IRC | 05:47 | |
*** threestrands has joined #openstack-mistral | 05:47 | |
*** gkadam has joined #openstack-mistral | 05:52 | |
*** threestrands_ has joined #openstack-mistral | 06:04 | |
*** threestrands_ has quit IRC | 06:04 | |
*** threestrands_ has joined #openstack-mistral | 06:04 | |
*** threestrands has quit IRC | 06:06 | |
*** pengdake has joined #openstack-mistral | 06:09 | |
rakhmerov | apetrich: hi, please have a look at https://review.openstack.org/#/c/538148/ | 06:35 |
*** jaosorior has quit IRC | 06:50 | |
*** josecastroleon has joined #openstack-mistral | 07:06 | |
*** jaosorior has joined #openstack-mistral | 07:12 | |
*** AlexeyAbashkin has joined #openstack-mistral | 07:41 | |
*** d0ugal has quit IRC | 07:42 | |
*** AlexeyAbashkin has quit IRC | 07:45 | |
*** AlexeyAbashkin has joined #openstack-mistral | 07:50 | |
*** haint has joined #openstack-mistral | 07:54 | |
*** jaosorior has quit IRC | 08:00 | |
*** d0ugal has joined #openstack-mistral | 08:07 | |
openstackgerrit | chenge proposed openstack/mistral master: replace curly quotes with straight quotes https://review.openstack.org/540755 | 08:18 |
*** d0ugal has quit IRC | 08:26 | |
openstackgerrit | Renat Akhmerov proposed openstack/mistral master: Fixing grammar mistake https://review.openstack.org/536222 | 08:47 |
*** d0ugal has joined #openstack-mistral | 08:48 | |
*** threestrands_ has quit IRC | 08:54 | |
*** shardy has joined #openstack-mistral | 09:07 | |
d0ugal | rakhmerov: Got a question for you re: cron triggers. | 09:08 |
rakhmerov | ok | 09:09 |
d0ugal | rakhmerov: am I right in thinking that the most frequent cron trigger is one execution per minute? | 09:09 |
rakhmerov | nope, it's possible to configure seconds also | 09:09 |
d0ugal | oh, interesting | 09:09 |
rakhmerov | you just need to use 6 time placeholders instead of 5 | 09:09 |
d0ugal | Right | 09:10 |
rakhmerov | and the right most becomes seconds | 09:10 |
d0ugal | rakhmerov: related question, how do you feel about making the spacing configurable? https://github.com/openstack/mistral/blob/master/mistral/services/periodic.py#L38 | 09:10 |
rakhmerov | I figured that some time ago and was surprised too | 09:10 |
rakhmerov | well, I'm totally fine with that but | 09:10 |
rakhmerov | but.. | 09:10 |
d0ugal | rakhmerov: we are using a cron trigger, but for something that runs ever 30 mins (I think). By default it checks the database every second for triggers - that creates load for no reason. If we could configured that we could make it something more sensible like every minute (or every 10 etc.) | 09:11 |
rakhmerov | the whole subsystem needs a serious refactoring | 09:11 |
d0ugal | Yeah, I agree | 09:11 |
d0ugal | but at the moment we are planning to stop using it because it is causing so much load | 09:11 |
rakhmerov | yes | 09:11 |
rakhmerov | that's understandable | 09:11 |
rakhmerov | my plan was to rearchitect it based on Scheduler | 09:11 |
d0ugal | Sounds good. | 09:12 |
rakhmerov | which is better suitable for HA, now has configuration options etc. | 09:12 |
d0ugal | Adding a config option would be a decent workaround for us for Queens. | 09:12 |
rakhmerov | but Scheduler needs refactoring itself too :) | 09:12 |
rakhmerov | d0ugal: as an intermediate step, sure, no problem | 09:12 |
d0ugal | I wasn't sure if we could easily pass a config value in to the decorator, but I see they do in Nova: http://git.openstack.org/cgit/openstack/nova/tree/nova/compute/manager.py#n1642 | 09:12 |
rakhmerov | but I'm just sharing my forward looking plans | 09:12 |
d0ugal | so much refactoring to do :) | 09:12 |
d0ugal | Great, look forward to seeing them | 09:13 |
d0ugal | rakhmerov: I guess we need to try and do some PTG planning soon | 09:13 |
rakhmerov | d0ugal: I sent an email about office hours | 09:13 |
rakhmerov | hopefully we'll soon agree on time slots and will do it | 09:13 |
d0ugal | I spotted, thanks for that. I'll reply shortly. | 09:13 |
d0ugal | I think I can make two of the slots, most of the time :) | 09:13 |
rakhmerov | ok | 09:14 |
rakhmerov | yes, that was my idea ) | 09:14 |
rakhmerov | so that everybody could cover at least two | 09:14 |
rakhmerov | d0ugal: so as far as the Scheduler, I'm planning to get to working on it soon, 2-3 weeks maybe. Some folks at Nokia are already experimenting with new approaches to implement Scheduler | 09:15 |
rakhmerov | at some point we'll converge with them and roll out a new upstream available solution | 09:15 |
d0ugal | Nice, it would be good if they developed it upstream too :) | 09:16 |
rakhmerov | yes, that's the goal | 09:17 |
rakhmerov | they just need some enhancements urgently and have to fork | 09:18 |
d0ugal | Right | 09:18 |
*** jpich has joined #openstack-mistral | 09:22 | |
openstackgerrit | Dougal Matthews proposed openstack/mistral master: Make the cron trigger execution interval configurable https://review.openstack.org/540785 | 09:27 |
d0ugal | rakhmerov, apetrich ^ - I think that'll work, just about to test it now tho' | 09:35 |
rakhmerov | ok | 09:35 |
apetrich | d0ugal, I saw that and looks good if it works :) | 09:36 |
openstackgerrit | Merged openstack/mistral master: Fix docs to better reflect Jinja and YAQL usage https://review.openstack.org/538148 | 09:37 |
apetrich | d0ugal, do you think that if we set the min 0 and on 0it should disable it? | 09:38 |
apetrich | I'm saying because of random sysadm wanting it to stop and setting it to zero and getting errors instead | 09:38 |
d0ugal | apetrich: we have the setting to disable it already - so I wasnted to avoid duplicating that. https://github.com/openstack/mistral/blob/master/mistral/config.py#L246 | 09:40 |
apetrich | I know It is on top of that option | 09:40 |
d0ugal | right | 09:40 |
d0ugal | periodic_task states that if it is negative it will disable it | 09:40 |
d0ugal | I am not sure what 0 would do | 09:40 |
apetrich | I was just thinking that someone wanting to disable it set enable false and set it to zero and get errors | 09:40 |
d0ugal | https://github.com/openstack/oslo.service/blob/master/oslo_service/periodic_task.py#L53 | 09:40 |
apetrich | but on the other hand keep the change minimal is good | 09:41 |
d0ugal | yeah, maybe I can add that later | 09:41 |
openstackgerrit | Dougal Matthews proposed openstack/mistral master: Make the cron trigger execution interval configurable https://review.openstack.org/540785 | 10:01 |
*** pengdake has quit IRC | 10:03 | |
*** jaosorior has joined #openstack-mistral | 10:43 | |
*** yangyapeng has quit IRC | 10:56 | |
*** yangyapeng has joined #openstack-mistral | 10:57 | |
*** shardy has quit IRC | 11:10 | |
openstackgerrit | Renat Akhmerov proposed openstack/mistral master: Remove achieved goals from the lis of annual goals https://review.openstack.org/540825 | 11:10 |
*** hardikjasani has left #openstack-mistral | 11:31 | |
*** thrash|g0ne is now known as thrash | 11:44 | |
*** jaosorior has quit IRC | 12:16 | |
*** yangyapeng has quit IRC | 12:29 | |
*** yangyapeng has joined #openstack-mistral | 12:33 | |
*** yangyapeng has quit IRC | 12:33 | |
*** josecastroleon has quit IRC | 13:00 | |
*** josecastroleon1 has joined #openstack-mistral | 13:00 | |
openstackgerrit | Merged openstack/mistral master: Using oslo_log instead of logging https://review.openstack.org/536181 | 13:22 |
*** pengdake has joined #openstack-mistral | 13:33 | |
*** pengdake has quit IRC | 13:34 | |
*** yangyapeng has joined #openstack-mistral | 13:35 | |
*** jaosorior has joined #openstack-mistral | 13:37 | |
*** yangyapeng has quit IRC | 13:39 | |
openstackgerrit | Merged openstack/mistral master: Fixing grammar mistake https://review.openstack.org/536222 | 13:48 |
*** d0ugal has quit IRC | 13:55 | |
*** d0ugal has joined #openstack-mistral | 14:30 | |
*** shardy has joined #openstack-mistral | 14:33 | |
*** josecastroleon1 has quit IRC | 14:53 | |
*** oidgar has joined #openstack-mistral | 15:09 | |
*** josecastroleon has joined #openstack-mistral | 15:09 | |
*** bobh has joined #openstack-mistral | 15:12 | |
*** katkapilatova has joined #openstack-mistral | 15:14 | |
*** shardy has quit IRC | 15:15 | |
openstackgerrit | Dougal Matthews proposed openstack/mistral master: Consider size of output_on_error https://review.openstack.org/490414 | 15:18 |
openstackgerrit | Dougal Matthews proposed openstack/mistral master: Make the cron trigger execution interval configurable https://review.openstack.org/540785 | 15:26 |
*** yangyapeng has joined #openstack-mistral | 15:34 | |
*** yangyapeng has quit IRC | 15:38 | |
*** katkapilatova has quit IRC | 16:04 | |
*** oidgar has quit IRC | 16:29 | |
*** AlexeyAbashkin has quit IRC | 16:34 | |
*** AlexeyAbashkin has joined #openstack-mistral | 16:34 | |
*** gkadam has quit IRC | 16:47 | |
*** shardy has joined #openstack-mistral | 16:48 | |
*** katkapilatova has joined #openstack-mistral | 16:58 | |
*** AlexeyAbashkin has quit IRC | 17:05 | |
*** d0ugal has quit IRC | 17:15 | |
*** AlexeyAbashkin has joined #openstack-mistral | 17:17 | |
*** AlexeyAbashkin has quit IRC | 17:21 | |
*** d0ugal has joined #openstack-mistral | 17:24 | |
*** oidgar has joined #openstack-mistral | 17:27 | |
*** yangyapeng has joined #openstack-mistral | 17:28 | |
*** shardy has quit IRC | 17:31 | |
*** yangyapeng has quit IRC | 17:32 | |
*** jpich has quit IRC | 17:35 | |
*** josecastroleon has quit IRC | 17:57 | |
*** yangyapeng has joined #openstack-mistral | 18:05 | |
*** dprince has joined #openstack-mistral | 18:07 | |
*** yangyapeng has quit IRC | 18:10 | |
*** josecastroleon has joined #openstack-mistral | 18:12 | |
*** d0ugal has quit IRC | 18:13 | |
*** d0ugal has joined #openstack-mistral | 18:27 | |
openstackgerrit | Toure Dunnon proposed openstack/mistral master: More tests for running workflows based on existing. https://review.openstack.org/540110 | 18:50 |
*** d0ugal has quit IRC | 18:59 | |
*** harlowja has joined #openstack-mistral | 19:03 | |
*** katkapilatova has quit IRC | 19:16 | |
*** d0ugal has joined #openstack-mistral | 19:23 | |
*** oidgar has quit IRC | 19:26 | |
*** dprince has quit IRC | 19:27 | |
*** AlexeyAbashkin has joined #openstack-mistral | 19:38 | |
*** AlexeyAbashkin has quit IRC | 19:47 | |
*** yangyapeng has joined #openstack-mistral | 20:04 | |
*** yangyapeng has quit IRC | 20:08 | |
*** yangyapeng has joined #openstack-mistral | 20:54 | |
*** yangyapeng has quit IRC | 20:58 | |
*** bobh has quit IRC | 21:14 | |
*** yangyapeng has joined #openstack-mistral | 21:44 | |
*** yangyapeng has quit IRC | 21:48 | |
*** bobh has joined #openstack-mistral | 22:16 | |
*** bobh has quit IRC | 22:23 | |
*** yangyapeng has joined #openstack-mistral | 22:23 | |
*** yangyapeng has quit IRC | 22:28 | |
*** bobh has joined #openstack-mistral | 23:01 | |
*** yangyapeng has joined #openstack-mistral | 23:13 | |
*** yangyapeng has quit IRC | 23:17 | |
*** threestrands has joined #openstack-mistral | 23:19 | |
*** threestrands has quit IRC | 23:19 | |
*** threestrands has joined #openstack-mistral | 23:19 | |
*** bobh has quit IRC | 23:26 | |
*** bobh has joined #openstack-mistral | 23:38 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!