Monday, 2018-05-21

*** gongysh has quit IRC00:23
*** lbragstad has joined #openstack-keystone00:37
*** ChanServ sets mode: +o lbragstad00:37
*** germs has joined #openstack-keystone00:45
*** Dinesh_Bhor has joined #openstack-keystone00:47
*** germs has quit IRC00:50
*** germs has joined #openstack-keystone00:54
*** edmondsw has joined #openstack-keystone01:01
*** edmondsw has quit IRC01:05
*** threestrands has joined #openstack-keystone01:12
*** r-daneel has joined #openstack-keystone02:13
*** namnh has joined #openstack-keystone02:30
*** germs has quit IRC02:38
openstackgerritmelissaml proposed openstack/keystonemiddleware master: Follow the new PTI for document build  https://review.openstack.org/56295102:40
openstackgerritmelissaml proposed openstack/keystonemiddleware master: Follow the new PTI for document build  https://review.openstack.org/56295103:14
*** r-daneel has quit IRC03:53
*** r-daneel has joined #openstack-keystone03:53
*** sonuk has joined #openstack-keystone04:04
*** bhagyashris has joined #openstack-keystone04:10
*** germs has joined #openstack-keystone04:10
*** germs has quit IRC04:15
yuxin_good morning04:16
yuxin_i'm using keystone with swift. I encountered an issue. it took keystone a very long time to validate token, no matter whether I used normal swift request or s3 request (validated by request /s3tokens).04:16
yuxin_it's wired that the request time was nearly 60s. does anyone have some ideas about this?04:16
*** threestrands has quit IRC04:18
*** threestrands has joined #openstack-keystone04:22
*** threestrands has quit IRC04:22
*** threestrands has joined #openstack-keystone04:22
*** threestrands has quit IRC04:23
*** threestrands has joined #openstack-keystone04:23
openstackgerritMerged openstack/keystone master: Update IdP sql model  https://review.openstack.org/55967604:44
*** lbragstad has quit IRC04:45
openstackgerritMerged openstack/keystone master: Fix the test for unique IdP  https://review.openstack.org/56381204:45
*** gongysh has joined #openstack-keystone04:58
*** Dinesh_Bhor has quit IRC05:00
*** Dinesh_Bhor has joined #openstack-keystone05:03
openstackgerritmelissaml proposed openstack/keystone master: fix error url  https://review.openstack.org/56946405:47
*** links has joined #openstack-keystone05:57
openstackgerritwangxiyuan proposed openstack/keystone master: Fix db model inconsistency for FederatedUser  https://review.openstack.org/56624206:09
openstackgerritwangxiyuan proposed openstack/keystone master: Enable Foreign keys for sql backend unit test  https://review.openstack.org/55802906:09
openstackgerritwangxiyuan proposed openstack/keystone master: Enable foreign keys for unit test  https://review.openstack.org/55819306:09
*** germs has joined #openstack-keystone06:11
*** germs has quit IRC06:11
*** germs has joined #openstack-keystone06:11
*** germs has quit IRC06:16
*** jrist has quit IRC06:24
*** itlinux has joined #openstack-keystone06:33
*** jrist has joined #openstack-keystone06:37
*** r-daneel has quit IRC06:38
*** pcaruana has joined #openstack-keystone06:47
*** Dinesh__Bhor has joined #openstack-keystone06:59
*** Dinesh_Bhor has quit IRC06:59
*** rcernin has quit IRC07:06
*** tesseract has joined #openstack-keystone07:10
*** gongysh has quit IRC07:11
*** pcaruana has quit IRC07:40
*** pcaruana has joined #openstack-keystone07:41
openstackgerritwangxiyuan proposed openstack/keystone master: Enable Foreign keys for sql backend unit test  https://review.openstack.org/55802907:52
openstackgerritwangxiyuan proposed openstack/keystone master: Enable foreign keys for unit test  https://review.openstack.org/55819307:52
*** gongysh has joined #openstack-keystone07:53
*** threestrands has quit IRC08:00
*** jaosorior has joined #openstack-keystone08:04
*** itlinux has quit IRC08:04
*** AlexeyAbashkin has joined #openstack-keystone08:07
openstackgerritwangxiyuan proposed openstack/keystone master: Api-ref: Refresh the Update APIs for limits  https://review.openstack.org/56974108:08
*** germs has joined #openstack-keystone08:12
*** germs has quit IRC08:12
*** germs has joined #openstack-keystone08:12
*** germs has quit IRC08:17
*** sonuk has quit IRC08:18
openstackgerritmelissaml proposed openstack/keystone master: fix rally docs url  https://review.openstack.org/56946408:26
*** jaosorior has quit IRC08:26
*** zzzeek has quit IRC08:29
*** sonuk has joined #openstack-keystone08:30
*** gongysh has quit IRC08:49
*** jaosorior has joined #openstack-keystone08:49
*** masuberu has joined #openstack-keystone08:54
*** masber has quit IRC08:57
*** zzzeek has joined #openstack-keystone08:59
*** cloudtoko has joined #openstack-keystone09:08
openstackgerritwangxiyuan proposed openstack/keystone master: Api-ref: Refresh the Update APIs for limits  https://review.openstack.org/56974109:19
openstackgerritwangxiyuan proposed openstack/keystone master: Enable foreign keys for unit test  https://review.openstack.org/55819309:32
*** Dinesh__Bhor has quit IRC09:33
*** pooja_jadhav has joined #openstack-keystone09:41
*** cloudtoko has quit IRC09:43
*** edmondsw has joined #openstack-keystone09:58
*** edmondsw has quit IRC10:06
*** namnh has quit IRC10:12
*** germs has joined #openstack-keystone10:13
*** germs has quit IRC10:18
*** prashkre has joined #openstack-keystone10:19
*** prashkre has quit IRC10:53
*** pcichy has quit IRC11:01
*** pcichy has joined #openstack-keystone11:02
yuxin_hi, i'm using keystone as auth layer of swift. i had an issue that it took keystone a very long time(60s) to validate a token.11:05
yuxin_after some tests, i found this may be the crux. when validating a token, a GET request to `/v3/auth/tokens` will be sent. when I am debugging, I found that execution would go to function `keystoneauth1/session.py:Session._send_request` to send the request.11:05
yuxin_and each GET requests to `/v3/auth/tokens` sent in `Session._send_request` took nearly 60s. but if i make the same request in another python env using requests module, it would respond instantly.11:05
yuxin_i am very confused, could it be related to configuration? i'm not very familiar with debugging of keystone. can anyone get me some hints?my keystone and swift versions are both pike.11:05
yuxin_here is the line in function `Session._send_request`. https://github.com/openstack/keystoneauth/blob/3.1.0/keystoneauth1/session.py#L76111:05
yuxin_sorry to send those again. but i'm in a little bit of a hurry.11:05
*** martinus__ has joined #openstack-keystone11:05
*** prashkre has joined #openstack-keystone11:15
yuxin_here is the keystone.conf http://paste.openstack.org/show/721466/11:33
wxyyuxin_: the 60s is cost by Keystone internally?11:48
yuxin_wxy: no idea. i added a break point in keystone/auth/controllers.py:Auth.validate_token, it waited nearly 60s to be captured. what keystone does before it call a controller method?11:54
yuxin_where's the entrance of keystone, maybe i could add a break point there?11:55
wxyyuxin_: check your paste.ini.  Usually the first point is healthcheck https://github.com/openstack/keystone/blob/master/etc/keystone-paste.ini#L6811:57
*** raildo has joined #openstack-keystone11:58
wxyyuxin_: code is here: https://github.com/openstack/oslo.middleware/blob/master/oslo_middleware/healthcheck/__init__.py#L54512:03
yuxin_thx! got it.12:05
*** jmccrory has quit IRC12:05
wxyyuxin_: you can try again. according to your description, another python env works, I guess the issue may be the network issue between Swift and Keystone12:05
*** jmccrory has joined #openstack-keystone12:06
*** sonuk has quit IRC12:07
wxyyuxin_: BTW, I'm not familiar with Swfit, but usually other services (Like Nova, Cinder...) call ``keystonemiddleware`` to talk to Keystone for token validation, not keystoneauth.12:08
*** prashkre has quit IRC12:12
*** germs has joined #openstack-keystone12:14
*** germs has quit IRC12:18
yuxin_wxy: em, not keystone internally. after self.session.request was called in Session._send_request, execution was not break in keystone healthchecker right away. it seems like self.session was doing something else before sending request actually.12:19
*** david-lyle has joined #openstack-keystone12:54
*** dklyle has quit IRC12:55
*** goofie has quit IRC12:58
*** portdirect has quit IRC13:04
*** portdirect has joined #openstack-keystone13:04
*** david-lyle has quit IRC13:18
*** dave-mccowan has joined #openstack-keystone13:32
*** dave-mcc_ has joined #openstack-keystone13:34
*** dave-mccowan has quit IRC13:37
*** jroll has quit IRC13:43
*** jroll has joined #openstack-keystone13:44
*** Shilpa has joined #openstack-keystone13:53
*** mvenesio has joined #openstack-keystone13:54
*** prashkre has joined #openstack-keystone14:00
*** goofie has joined #openstack-keystone14:04
*** tesseract-RH has joined #openstack-keystone14:09
*** tesseract has quit IRC14:12
*** germs has joined #openstack-keystone14:15
*** germs has quit IRC14:15
*** germs has joined #openstack-keystone14:15
*** zhongjun_ has quit IRC14:18
*** germs has quit IRC14:20
*** Guest86150 has quit IRC14:20
*** markvoelker has quit IRC14:21
*** markvoelker has joined #openstack-keystone14:21
*** ShilpaSD has joined #openstack-keystone14:26
*** markvoelker has quit IRC14:26
*** Shilpa has quit IRC14:29
*** dklyle has joined #openstack-keystone14:37
*** germs has joined #openstack-keystone14:41
*** germs has quit IRC14:41
*** germs has joined #openstack-keystone14:41
*** markvoelker has joined #openstack-keystone14:46
*** itlinux has joined #openstack-keystone14:51
*** links has quit IRC14:51
*** prashkre has quit IRC14:58
*** prashkre has joined #openstack-keystone14:59
*** itlinux has quit IRC14:59
*** germs has quit IRC15:13
*** tesseract-RH has quit IRC15:16
*** markvoelker has quit IRC15:17
*** markvoelker has joined #openstack-keystone15:17
*** pcaruana has quit IRC15:18
*** AlexeyAbashkin has quit IRC15:20
*** AlexeyAbashkin has joined #openstack-keystone15:20
*** markvoelker has quit IRC15:22
*** markvoelker has joined #openstack-keystone15:23
*** prashkre has quit IRC15:27
*** prashkre_ has joined #openstack-keystone15:27
*** dklyle has quit IRC15:29
*** dklyle has joined #openstack-keystone15:29
*** rmascena has joined #openstack-keystone15:31
*** prashkre_ has quit IRC15:31
*** tesseract has joined #openstack-keystone15:31
*** prashkre has joined #openstack-keystone15:31
*** rmascena has quit IRC15:32
*** raildo has quit IRC15:33
*** edmondsw has joined #openstack-keystone15:37
*** dave-mcc_ has quit IRC15:40
*** dave-mccowan has joined #openstack-keystone15:41
*** edmondsw has quit IRC15:42
*** edmondsw has joined #openstack-keystone15:44
*** raildo has joined #openstack-keystone15:45
*** markvoelker has quit IRC15:46
*** edmondsw has quit IRC15:49
yuxin_wxy: holly! it turns out to be the hostname resolution issue. when the url was http://controller:35357/v3/auth/tokens, it took a long time to do something(resolve controller to ip?) before sending it out. after changing controller to ip, it responds instantly.15:57
yuxin_i'm wondering if it's related to host network configuration. or a bug?15:59
*** spilla has joined #openstack-keystone15:59
*** fiddletwix has quit IRC16:00
yuxin_wxy: really appreciated your help! :)16:00
*** fiddletwix has joined #openstack-keystone16:01
*** gyee has joined #openstack-keystone16:02
*** masuberu has quit IRC16:17
*** masuberu has joined #openstack-keystone16:18
*** lbragstad has joined #openstack-keystone16:19
*** ChanServ sets mode: +o lbragstad16:19
*** gyee has quit IRC16:31
*** gyee has joined #openstack-keystone16:35
*** felipemo_ has joined #openstack-keystone16:37
*** felipemo_ is now known as felipemonteiro16:37
*** panbalag has joined #openstack-keystone16:38
*** lbragstad has quit IRC16:47
*** AlexeyAbashkin has quit IRC17:03
*** pcaruana has joined #openstack-keystone17:05
*** felipemonteiro has quit IRC17:13
*** germs has joined #openstack-keystone17:13
*** germs has quit IRC17:13
*** germs has joined #openstack-keystone17:13
*** panbalag has left #openstack-keystone17:14
*** dklyle has quit IRC17:16
*** dklyle has joined #openstack-keystone17:17
*** edmondsw has joined #openstack-keystone17:17
*** germs has quit IRC17:17
*** spilla has quit IRC17:21
*** spilla has joined #openstack-keystone17:22
*** spilla has quit IRC17:26
*** germs has joined #openstack-keystone17:27
*** tesseract has quit IRC17:28
*** dave-mccowan has quit IRC17:28
*** dave-mccowan has joined #openstack-keystone17:29
*** dave-mccowan has quit IRC17:37
*** felipemonteiro has joined #openstack-keystone17:38
*** spzala has joined #openstack-keystone17:48
*** spzala has quit IRC17:48
*** dklyle has quit IRC17:51
*** david-lyle has joined #openstack-keystone17:51
*** r-daneel has joined #openstack-keystone17:51
*** r-daneel has quit IRC18:03
*** felipemonteiro has quit IRC18:04
*** david-lyle has quit IRC18:08
*** gongysh has joined #openstack-keystone18:16
*** david-lyle has joined #openstack-keystone18:19
*** david-lyle is now known as dklyle18:19
*** edmondsw has quit IRC18:27
*** edmondsw has joined #openstack-keystone18:28
*** edmondsw has quit IRC18:32
*** prashkre has quit IRC18:33
*** cz2 has quit IRC18:37
*** Guest74322 is now known as mgagne18:41
*** spilla has joined #openstack-keystone18:42
*** mgagne has quit IRC18:42
*** mgagne has joined #openstack-keystone18:42
*** gongysh has quit IRC18:42
*** gongysh has joined #openstack-keystone18:45
*** edmondsw has joined #openstack-keystone18:48
*** panbalag has joined #openstack-keystone18:50
*** edmondsw has quit IRC18:52
*** cz2 has joined #openstack-keystone19:03
*** r-daneel has joined #openstack-keystone19:12
*** spilla has quit IRC19:16
*** gongysh has quit IRC19:18
*** r-daneel has quit IRC19:21
*** markvoelker has joined #openstack-keystone19:37
*** panbalag has left #openstack-keystone19:40
*** fiddletwix has quit IRC19:49
*** markvoelker_ has joined #openstack-keystone20:09
*** markvoelker has quit IRC20:10
*** fiddletwix has joined #openstack-keystone20:12
*** spilla has joined #openstack-keystone20:13
*** felipemonteiro has joined #openstack-keystone20:20
*** germs has quit IRC20:21
*** felipemonteiro_ has joined #openstack-keystone20:22
*** felipemonteiro_ has quit IRC20:24
*** felipemonteiro has quit IRC20:26
*** felipemonteiro has joined #openstack-keystone20:26
*** r-daneel has joined #openstack-keystone20:27
*** markvoelker_ has quit IRC20:28
*** gongysh has joined #openstack-keystone20:29
*** markvoelker has joined #openstack-keystone20:29
*** markvoelker_ has joined #openstack-keystone20:32
*** markvoelker has quit IRC20:32
*** raildo has quit IRC20:35
*** pcaruana has quit IRC20:37
*** spilla has quit IRC20:38
*** mvenesio has quit IRC20:40
*** spilla has joined #openstack-keystone20:43
*** spilla has quit IRC20:45
*** spilla has joined #openstack-keystone20:46
*** martinus__ has quit IRC20:47
*** gongysh has quit IRC20:48
*** gongysh has joined #openstack-keystone20:48
*** gongysh has quit IRC20:51
*** r-daneel has quit IRC21:10
*** felipemonteiro has quit IRC21:11
*** spilla has quit IRC21:11
*** markvoelker_ has quit IRC21:15
*** spilla has joined #openstack-keystone21:17
*** r-daneel has joined #openstack-keystone21:27
*** germs has joined #openstack-keystone21:48
*** germs has quit IRC21:48
*** germs has joined #openstack-keystone21:48
*** germs has quit IRC21:50
*** spilla has quit IRC21:53
*** markvoelker has joined #openstack-keystone21:57
*** germs has joined #openstack-keystone22:13
*** germs has quit IRC22:13
*** germs has joined #openstack-keystone22:13
*** felipemonteiro has joined #openstack-keystone22:13
*** rcernin has joined #openstack-keystone22:16
*** spilla_ has joined #openstack-keystone22:17
*** germs has quit IRC22:17
*** markvoelker has quit IRC22:30
*** jmlowe has joined #openstack-keystone22:39
*** felipemonteiro has quit IRC22:46
*** spilla has joined #openstack-keystone22:47
*** spilla has quit IRC22:49
*** spilla_ has quit IRC22:50
*** jmlowe has quit IRC22:57
*** r-daneel has quit IRC23:00
*** threestrands has joined #openstack-keystone23:05
*** edmondsw has joined #openstack-keystone23:13
*** edmondsw has quit IRC23:21
*** jmlowe has joined #openstack-keystone23:24
*** tonytan4ever has joined #openstack-keystone23:29
*** edmondsw has joined #openstack-keystone23:31
*** edmondsw has quit IRC23:35
openstackgerritChuck Short proposed openstack/pycadf master: Remove moxstubout usage  https://review.openstack.org/56929923:37
hrybackilbragstad[m]: we have to re-write the title for https://review.openstack.org/#/c/523973/ -- people are still commenting on it for some reason23:39
*** jmlowe has quit IRC23:39
*** edmondsw has joined #openstack-keystone23:41
*** edmondsw_ has joined #openstack-keystone23:44
*** edmondsw has quit IRC23:45
*** edmondsw_ has quit IRC23:53

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!