Thursday, 2020-09-17

*** tetsuro has joined #openstack-cyborg00:08
openstackgerritMerged openstack/cyborg-specs master: Change the doc8 check mode  https://review.opendev.org/74879800:57
*** tetsuro has quit IRC00:58
*** tetsuro has joined #openstack-cyborg00:59
*** tetsuro has quit IRC01:03
openstackgerritWenping Song proposed openstack/cyborg master: Signal to conductor service to apply patch accelerator requests.  https://review.opendev.org/75195701:30
*** tetsuro has joined #openstack-cyborg01:32
*** tetsuro has quit IRC01:37
*** brinzhang_ has joined #openstack-cyborg02:10
*** brinzhang0 has quit IRC02:13
openstackgerritShogo Saito proposed openstack/cyborg master: Add releasenote for programming method  https://review.opendev.org/75235802:26
*** swp20 has joined #openstack-cyborg02:53
*** Yumeng has joined #openstack-cyborg02:55
openstackgerritBrin Zhang proposed openstack/cyborg master: WIP: Add microversion instructions  https://review.opendev.org/74372203:02
*** chenke has joined #openstack-cyborg03:02
chenkeHi yumeng.03:02
*** s_shogo has joined #openstack-cyborg03:02
swp20Hi all03:03
brinzhang_\o03:04
Yumenghi all03:04
s_shogoHi all03:05
Yumenghi s_shogo. let's wait one more second, I will ask if xinran comes.03:06
s_shogoOK03:06
*** xinranwang__ has joined #openstack-cyborg03:07
xinranwang__Hi all03:07
Yumenghi xinran03:07
Yumengok. we've got enough people. let's get started03:08
Yumeng#startmeeting openstack-cyborg03:08
openstackMeeting started Thu Sep 17 03:08:51 2020 UTC and is due to finish in 60 minutes.  The chair is Yumeng. Information about MeetBot at http://wiki.debian.org/MeetBot.03:08
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.03:08
*** openstack changes topic to " (Meeting topic: openstack-cyborg)"03:08
openstackThe meeting name has been set to 'openstack_cyborg'03:08
Yumeng#topic Roll call03:09
*** openstack changes topic to "Roll call (Meeting topic: openstack-cyborg)"03:09
Yumeng#info Yumeng03:09
swp20#info swp2003:09
xinranwang__#info xinranwang__03:09
s_shogo#info s_shogo03:09
brinzhang_#info brinzhang_03:09
Yumengcool03:10
Yumeng#topic Agenda03:10
*** openstack changes topic to "Agenda (Meeting topic: openstack-cyborg)"03:10
chenke#info chenke03:10
Yumengwe are approaching final rc. Code freeze is Oct 05 - Oct 09, but we actually may just have 13 days to go before RC cut because of the Chinese National Holiday(Oct 01 - Oct 08).03:11
xinranwang__wow, it's approching03:12
Yumengyep ^ time flies.03:12
Yumengand we now have one big feature to merge. the program API patch: https://review.opendev.org/#/c/698190/03:13
s_shogoyes > program API patch03:14
s_shogoI read your comment just now, I'll add the TODO soon.03:14
s_shogo: Yumeng03:14
YumengGreat!03:14
swp20s_shogo: https://review.opendev.org/#/c/698190/11/cyborg/agent/rpcapi.py@L49 do we need always to change the version to RPC_API_VERSION?03:15
swp20i think the 1.0 is the min version.03:15
swp20we shouldnot change it.03:16
s_shogoThat is not mandatory one, IMO.03:16
brinzhang_agree with swp20, we should change the version in fpga_program()03:18
s_shogoBut there seems to be warning may be outputted if there is difference between manager.py's microversion and RPC versions.03:18
swp20if we change it, other api may be effected.03:18
brinzhang_but it seems the 1.0 is not exist03:18
Yumeng"manager.py's microversion and RPC versions", will these two have conflicts?03:20
*** links has joined #openstack-cyborg03:21
s_shogoYumeng that may be in my specific problem, I'll check that.03:21
brinzhang_s_shogo: keep the rpc version in 1.0 is better than to change it to 1.1, it is backward compatible03:22
brinzhang_I think03:22
YumengThanks s_shogo.03:23
s_shogobrinzhang_ : as before , you mentioned the 1.1 in the patch, that is old one?03:23
brinzhang_may I missed this said by swp2003:24
s_shogoOK, to change that to 1.0 is not difficult task,03:25
brinzhang_Yumeng, s_shogo: RPC_API_VERSION exist in manager.py and rpcapi.py, in the manager.py do we need it?03:26
brinzhang_It seems like no need to record that in AgentManager, right?03:27
Yumengyes I thinks so.03:27
Yumengjust checked another project, pls see https://github.com/openstack/manila/blob/479f5f1938bd212982cd4a2d25464b757ca12e2b/manila/scheduler/manager.py03:28
brinzhang_A question is in https://review.opendev.org/#/c/698190/11/cyborg/agent/manager.py@46, do we need to init the target for new rpc api version?03:28
Yumengops,  seems manila.SchedulerManager recorded RPC_API_VERSION but didn't actually use it.03:29
brinzhang_https://github.com/openstack/manila/blob/479f5f1938bd212982cd4a2d25464b757ca12e2b/manila/scheduler/rpcapi.py#L28-L5303:30
xinranwang__Shall we make conductor manager and rpcapi have same verison?03:31
brinzhang_the change rpc api always keep in latest version init in target in manila schdeuler rpcapi03:31
Yumengbrinzhang_,s_shogo:  cinder may have a better example in using RPC_API_VERSION in both rpc.py and manager.py. FIR:https://github.com/openstack/cinder/blob/19caf5651b1272cba46396c53bd5cbb6a312def5/cinder/manager.py , https://github.com/openstack/cinder/blob/3c29c3846ee4e0a43e74f7328642ace218f00d18/cinder/rpc.py#L20203:34
brinzhang_from these example, we can sure the Target need the latest RPC version, it can support 1.0~latest03:36
brinzhang_target = messaging.Target(topic=self.TOPIC, version=self.RPC_API_VERSION)03:37
Yumengxinranwang__, I think  conductor rpcapi_version can be different from that of agent.03:37
brinzhang_s_shogo: please test in you local for the program API, and changed the target03:37
s_shogook, I try that.03:38
brinzhang_How to understand Yumeng's doubt?03:39
swp20s_shogo: i change conductor rpcapi target version to latest, and create dp with error: HttpException: 500: Server Error for url: http://10.180.249.199/accelerator/v2/device_profiles, Remote error: UnsupportedVersion Endpoint does not support RPC version 1.1. Attempted method: device_profile_create03:41
s_shogonow, I have encountered the same error. that returns 500.03:41
s_shogoswp2003:41
s_shogo( in fpga_program03:42
swp20we should research this.03:42
brinzhang_IMO, that need to have a deep search, and make sure what we should do, waht do you think, s_shogo, Yumeng, xinranwang_, swp20?03:43
s_shogoToward Victoria release, to change the RPC version 1.0 temporary is one way ,IMO.03:44
xinranwang__s03:44
xinranwang__s_shogo: yes I agree this03:44
s_shogo(that is not perfect solution , this is temporary .)03:44
brinzhang_ok03:45
xinranwang__don't block on this03:45
xinranwang__we can backport this to V when we figure it out03:46
s_shogothat's good, I agree the backport:  xinranwang_03:46
brinzhang_We can let this go, but need to make sure it's ok for this release, at least, we dont introduce an error03:47
swp20ok. aggree03:47
Yumengyes, agree. don't block on this03:47
Yumengok.. let's move to next topic.03:49
s_shogook, I will change that, and commit soon.03:49
Yumengthanks s_shogo03:49
s_shogothanks all03:49
brinzhang_ok03:49
brinzhang_*me will left 30mins03:49
Yumenghere is just an announcement: What to do next week? review and merge docs, release note, bug fix, and necessary enhancement patches mainly for Victoria delivery.03:50
Yumengand when I was check doc page this morning. I wanna discuss with you guys what is not good with the current doc page? what we can do in the next few days? https://docs.openstack.org/cyborg/latest/03:51
YumengI was writing the doc for the cyborg new policy as a usage guide. and will submit a very basic framework of that.03:53
Yumengdo we need to update the driver's usage guide? I think the testing report is already good enough, but how can users know this can be also a usage guide?03:55
YumengAnother page I can think of is the CLI page. I will update this. https://docs.openstack.org/cyborg/latest/cli/index.html.03:58
YumengThat's all I can think of for now.03:59
s_shogoI think the lack of cli document is problem, too.04:00
s_shogoI'm trying to add the cyborg plugin's description to the osc document , now.  https://review.opendev.org/#/c/751986/04:00
YumengJust mention this, doesn't have to point out all of them at one. if you guys think of other pages, just ping us at wechat.04:01
Yumengs_shogo: nice! do you need helpt in asking review?04:01
s_shogoYumeng now,I'm trying fix the Zuul errors. after that, I will ask your review :)04:02
Yumengsure.04:02
*** songwenping_ has joined #openstack-cyborg04:03
Yumengcool. Thank you, guys!  We've done a lot in Victoria!04:03
YumengDo you guys want to bring up anything else?04:04
Yumengif nothing else, let's wrap up thisĀ meetingĀ and see you all again next week!04:05
Yumengbye04:05
Yumeng#endmeeting04:05
*** openstack changes topic to "Pending patches (Meeting topic: openstack-cyborg)"04:05
openstackMeeting ended Thu Sep 17 04:05:28 2020 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)04:05
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_cyborg/2020/openstack_cyborg.2020-09-17-03.08.html04:05
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_cyborg/2020/openstack_cyborg.2020-09-17-03.08.txt04:05
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_cyborg/2020/openstack_cyborg.2020-09-17-03.08.log.html04:05
*** swp20 has quit IRC04:06
*** songwenping__ has joined #openstack-cyborg04:09
*** songwenping_ has quit IRC04:12
*** songwenping__ has quit IRC04:25
*** songwenping__ has joined #openstack-cyborg04:26
*** songwenping__ has quit IRC05:03
openstackgerritShogo Saito proposed openstack/cyborg master: Programming support (v2 Deployable API)  https://review.opendev.org/69819005:09
*** tetsuro has joined #openstack-cyborg05:14
*** songwenping__ has joined #openstack-cyborg05:38
*** chenke has quit IRC05:52
*** s_shogo has quit IRC06:10
openstackgerritYumengBao proposed openstack/cyborg master: Add trait check for POST Device Profile  https://review.opendev.org/75225706:41
openstackgerritYumengBao proposed openstack/cyborg master: Add rc check for POST Device Profile  https://review.opendev.org/75226906:42
openstackgerritYumengBao proposed openstack/cyborg master: Add rc check for POST Device Profile  https://review.opendev.org/75226906:44
*** jraju__ has joined #openstack-cyborg06:59
*** links has quit IRC07:00
*** xinranwang__ has quit IRC07:36
openstackgerritYumengBao proposed openstack/cyborg master: [goal] Fixing lower constraints for Ubuntu Focal  https://review.opendev.org/75239108:34
openstackgerritYumengBao proposed openstack/python-cyborgclient master: [goal] Fixing lower constraints for Ubuntu Focal  https://review.opendev.org/75239908:52
openstackgerritYumengBao proposed openstack/cyborg-tempest-plugin master: [goal] Fixing lower constraints for Ubuntu Focal  https://review.opendev.org/75240109:00
openstackgerritMerged openstack/python-cyborgclient master: Update master for stable/victoria  https://review.opendev.org/75092209:11
openstackgerritMerged openstack/python-cyborgclient master: Add Python3 wallaby unit tests  https://review.opendev.org/75092309:23
*** tetsuro has quit IRC09:25
*** efried has quit IRC11:49
*** efried has joined #openstack-cyborg11:51
*** efried has quit IRC12:01
*** brinzhang has joined #openstack-cyborg12:31
*** brinzhang_ has quit IRC12:36
*** efried has joined #openstack-cyborg13:00
*** Yumeng has quit IRC15:48
*** jraju__ has quit IRC16:28
*** brinzhang_ has joined #openstack-cyborg16:46
*** brinzhang has quit IRC16:50
*** irclogbot_3 has quit IRC17:58
*** irclogbot_3 has joined #openstack-cyborg18:01
*** openstackgerrit has quit IRC19:21
*** brinzhang0 has joined #openstack-cyborg22:14
*** brinzhang_ has quit IRC22:17
*** openstackgerrit has joined #openstack-cyborg22:22
openstackgerritGhanshyam Mann proposed openstack/cyborg master: Change default policy file from JSON to YAML  https://review.opendev.org/75257622:22
gmannbrinzhang0:  Yumeng ^^ a pre work for new policy shipment22:24

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!