*** gyee has quit IRC | 00:02 | |
*** itlinux has joined #openstack-swift | 00:59 | |
*** psachin has joined #openstack-swift | 02:55 | |
*** gkadam has joined #openstack-swift | 03:36 | |
*** tdasilva has quit IRC | 04:27 | |
openstackgerrit | Merged openstack/swift master: switch documentation job to new PTI https://review.openstack.org/596211 | 05:24 |
---|---|---|
*** dr_feelgood has joined #openstack-swift | 05:39 | |
*** dr_feelgood has quit IRC | 05:48 | |
*** links has joined #openstack-swift | 06:16 | |
*** pcaruana has joined #openstack-swift | 06:39 | |
*** geaaru has quit IRC | 06:43 | |
*** hseipp has joined #openstack-swift | 06:46 | |
*** rcernin has quit IRC | 07:02 | |
*** andymccr has joined #openstack-swift | 07:35 | |
*** cbartz has joined #openstack-swift | 07:42 | |
*** mikecmpbll has joined #openstack-swift | 07:48 | |
*** rcernin has joined #openstack-swift | 08:59 | |
*** takamatsu has joined #openstack-swift | 09:15 | |
*** hoonetorg has quit IRC | 09:20 | |
*** nguyenhai_ has joined #openstack-swift | 09:45 | |
*** rcernin has quit IRC | 09:47 | |
*** nguyenhai has quit IRC | 09:49 | |
*** ccamacho|brb has quit IRC | 10:29 | |
*** ccamacho has joined #openstack-swift | 10:50 | |
*** szaher has joined #openstack-swift | 11:46 | |
*** gkadam has quit IRC | 13:05 | |
*** tdasilva has joined #openstack-swift | 13:13 | |
*** ChanServ sets mode: +v tdasilva | 13:13 | |
tdasilva | good morning | 13:15 |
*** psachin has quit IRC | 13:39 | |
*** psachin has joined #openstack-swift | 13:49 | |
*** psachin has quit IRC | 13:58 | |
*** itlinux has quit IRC | 14:12 | |
*** links has quit IRC | 14:27 | |
*** pcaruana has quit IRC | 14:29 | |
*** pcaruana has joined #openstack-swift | 14:30 | |
*** zaitcev_ has joined #openstack-swift | 14:37 | |
*** ChanServ sets mode: +v zaitcev_ | 14:37 | |
*** zaitcev has quit IRC | 14:38 | |
*** zaitcev_ is now known as zaitcev | 14:38 | |
*** pcaruana has quit IRC | 15:00 | |
*** itlinux has joined #openstack-swift | 15:07 | |
*** gkadam has joined #openstack-swift | 15:10 | |
*** cbartz has quit IRC | 15:21 | |
timburke | good morning | 15:21 |
*** gyee has joined #openstack-swift | 15:27 | |
*** jistr is now known as jistr|call | 15:42 | |
*** jistr|call is now known as jistr | 15:43 | |
notmyname | good morning | 15:46 |
*** gkadam has quit IRC | 16:21 | |
*** hseipp has quit IRC | 16:25 | |
openstackgerrit | Tim Burke proposed openstack/swift master: Add IPv6 DSVM tests https://review.openstack.org/591497 | 16:34 |
*** mikecmpbll has quit IRC | 16:36 | |
openstackgerrit | Tim Burke proposed openstack/swift master: Display crypto data/metadata details in swift-object-info https://review.openstack.org/586903 | 16:37 |
openstackgerrit | Tim Burke proposed openstack/swift master: Allow multiple keymasters https://review.openstack.org/586902 | 16:38 |
*** jemc has joined #openstack-swift | 16:42 | |
jemc | Is this an acceptable place for questions? I'm working on setting up a single-docker-container image for swift to use for testing, and as part of that, I'd like to configure all of the swift applications running inside the container (under supervisord) to log to stdout of their process, instead of or in addition to rsyslog. | 16:44 |
notmyname | jemc: this is a good place to ask questions | 16:45 |
jemc | Is that possible, and if so, what is the configuration option to do it? I'm currently setting `log_to_console = true` in the various `conf` files, but I'm not sure its working because I'm getting 500 errors from some swift API calls, but not seeing any output in my combined stdout view | 16:46 |
notmyname | jemc: when I last working on it (in https://review.openstack.org/#/c/577467/), I had a syslog container taking the UDP stream and then interacting with that to grab logs | 16:48 |
patchbot | patch 577467 - swift - added docker test target tools - 9h 34m 23s spent in CI | 16:48 |
notmyname | https://github.com/bouncestorage/docker-swift looks like it sets up syslog, so that's not exactly what you want... | 16:49 |
jemc | I'm basing my work off of https://github.com/ccollicutt/docker-swift-onlyone | 16:49 |
jemc | which sets up syslog to run under supervisord, but it doesn't really work with some of my security modifications | 16:50 |
jemc | so I'm trying to eliminate the syslog dependency | 16:50 |
jemc | I noticed that python-language-level errors already go to stdout (stderr?), and they are working fine for me - I'm just missing out on the application-level logging | 16:51 |
jemc | I didn't see any documentation for it, but I found the `log_to_console` option here: https://github.com/openstack/swift/blob/1fa4b9e3feba75e56293aaf57352ec5add3551a4/bin/swift-drive-audit#L157 | 16:52 |
notmyname | I think there's a way, maybe | 16:54 |
notmyname | normally one would use `swift-init` to start swift processes. eg `swift-init proxy start`. sometimes you may call it directly like `swift-proxy-server /path/to/conf`, but `swift-init` has some extra niceness | 16:55 |
jemc | looks like maybe this is tied to a `verbose` setting somewhere? https://github.com/openstack/swift/blob/1fa4b9e3feba75e56293aaf57352ec5add3551a4/swift/common/daemon.py#L291 | 16:55 |
openstackgerrit | Tim Burke proposed openstack/swift master: Factor out a proper BaseKeyMaster class https://review.openstack.org/590024 | 16:55 |
notmyname | so insted of using `swift-init thing start`, use `swift-init thing no-daemon`. that will prevent it from forking to the background and I think will log to stdout | 16:55 |
jemc | not using `swift-init` currently - the invocations look like this: https://github.com/ccollicutt/docker-swift-onlyone/blob/master/files/supervisord.conf#L15 | 16:56 |
jemc | but it looks like maybe I can just add `-v` to that? https://github.com/openstack/swift/blob/1fa4b9e3feba75e56293aaf57352ec5add3551a4/doc/manpages/swift-object-auditor.1#L38-L44 | 16:57 |
jemc | will try | 16:57 |
jemc | alright, awesome - it works! now I just have to work on troubleshooting the remaining errors, now that I can see the error logs... | 17:00 |
notmyname | cool | 17:00 |
notmyname | was about to say... | 17:00 |
notmyname | jemc: if that doesn't work for you (although it seems to be working in my dev environment for me), then the best you may be able to do is set up udp logging and run a syslog reader to bridge/parse that udp stream to stdout | 17:01 |
jemc | glad it didn't come to that :) | 17:01 |
notmyname | I've got something similar at home. my swift cluster is running on tiny embedded devices with microsd cards as OS drives. microsd cards have *terrible* write endurance, so logging just destroys them. so I've got them streaming logs to UDP, and I can spin something up and attach to the stream when I need logs | 17:02 |
openstackgerrit | Tim Burke proposed openstack/swift master: bulk: Use make_subrequest to make subrequests https://review.openstack.org/502505 | 17:04 |
openstackgerrit | Tim Burke proposed openstack/swift master: Tighten up pep8 irrelevant-files https://review.openstack.org/597184 | 17:11 |
openstackgerrit | Tim Burke proposed openstack/swift master: Allow multiple keymasters https://review.openstack.org/586902 | 17:18 |
openstackgerrit | Andreas Jaeger proposed openstack/python-swiftclient master: import zuul job settings from project-config https://review.openstack.org/596206 | 17:40 |
*** mikecmpbll has joined #openstack-swift | 18:39 | |
timburke | oh hey, thanks zaitcev! i'd been thinking about doing something like https://github.com/openstack/keystonemiddleware/commit/00e94b7 and here i see you've already done it! | 18:45 |
*** hoonetorg has joined #openstack-swift | 19:22 | |
*** hoonetorg has quit IRC | 19:24 | |
*** ccamacho has quit IRC | 19:54 | |
timburke | notmyname: i kinda remember you looking at zuul/gate stuff recently -- if you've got bandwidth, it might be good to figure out what's going on with etcd on https://review.openstack.org/#/c/591497/ | 20:19 |
patchbot | patch 591497 - swift - Add IPv6 DSVM tests - 7h 10m 39s spent in CI | 20:19 |
*** itlinux has quit IRC | 20:31 | |
notmyname | timburke: yeah, I think turning off etcd3 is the right answer: http://logs.openstack.org/97/591497/7/check/swift-dsvm-functional-ipv6/484544c/controller/logs/screen-etcd.txt.gz#_Aug_28_17_44_17_701051 | 20:45 |
timburke | i don't get why we don't get a similar error on ipv4... oh well | 20:45 |
*** hoonetorg has joined #openstack-swift | 21:36 | |
*** rcernin has joined #openstack-swift | 21:46 | |
*** mikecmpbll has quit IRC | 21:58 | |
timburke | notmyname: huh. well this time it passed... though it must've been on a retry, 'cause i know i watched a job fail for that patchset. maybe something to do with different node providers? i saw it fail on ovh but pass on rax... | 22:12 |
mattoliverau | morning | 23:06 |
*** joeljwright has quit IRC | 23:10 | |
*** joeljwright has joined #openstack-swift | 23:11 | |
*** ChanServ sets mode: +v joeljwright | 23:11 | |
notmyname | mattoliverau: hello | 23:26 |
notmyname | timburke: oh interesting | 23:26 |
*** itlinux has joined #openstack-swift | 23:53 | |
*** threestrands has joined #openstack-swift | 23:54 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!