Friday, 2016-10-21

openstackgerritClay Gerrard proposed openstack/swift: Make ECDiskFileReader check fragment metadata  https://review.openstack.org/38765500:08
claygprobably now would be a good time for some fresh eyes ^00:11
*** d0ugal has quit IRC00:26
*** d0ugal has joined #openstack-swift00:27
*** gabor_antal has quit IRC00:43
*** gabor_antal has joined #openstack-swift00:44
*** gabor_antal has quit IRC00:53
*** gabor_antal has joined #openstack-swift00:54
*** asettle has joined #openstack-swift01:07
*** klamath has quit IRC01:08
*** chianingwang has quit IRC01:09
*** asettle has quit IRC01:11
*** zhengyin has joined #openstack-swift01:21
zhengyingood morning01:22
kota_good morning01:29
kota_it looks like audit patch has progressed.01:30
*** mingyu has joined #openstack-swift01:37
*** mingyu has quit IRC01:41
*** Jeffrey4l has quit IRC01:45
mattoliverauzhengyin kota_: morning01:49
zhengyin mattoliverau,kota_:morning01:50
kota_mattolivearu, zhengyin: morning01:51
kota_it's the last working day before summit.01:52
kota_mattolivearu: have you been heading for barcelona?01:52
mattoliveraukota_: \o/01:52
mattoliveraukota_: when you heading out?01:52
kota_the mid-night of Sun in JST.01:52
kota_mattoliverau:^^01:52
kota_mattoliverau: that will make me to land to barcelona around noon in Mon (in EU Time)01:53
mattoliverauahh cool, I leave sunday at 12pm and will arrive around 11am on Monday. (30+ hours in transit)01:53
mattoliverauso you leave later then me and get there around the same time :)01:54
kota_mattoliverau: right :)01:54
mattoliveraukota_: but at least we should have about the same amount of jetlag ;)01:54
mattoliverauon that I'm going to find some lunch.01:55
kota_mattoliverau: yeah, the reason why you have to take a longer trip is our difference of northan/southan in the globe.01:56
kota_mattoliverau: enjoy the lunch :-)01:57
mattoliverauYeah, Syd > Lon (with a refuel in Singapore) alone will take 23 hours :(01:58
kota_mattoliverau: you got same boat with me on the audit patch ;-)02:14
* kota_ is wondering if we could have something like dinner or cactail party for swifters in Barcelona summit, btw.02:19
* kota_ doesn't know anything if it exists.02:19
openstackgerritKazuhiro MIYAHARA proposed openstack/swift: WIP: Swift Automated Tiering  https://review.openstack.org/28705702:26
mattoliveraukota_: yeah I don't if anything is happening officially, we should still do a Swift dinner even if unofficial :)02:28
kota_mattolivearu: k, let's do that02:38
kota_https://www.youtube.com/watch?v=JmMTCWyY8Y4&feature=youtu.be&t=44 this one looks like Swift mascot02:38
mattoliverauyeah I'd say so.. it does have the tail of a swift02:39
mattoliveraubut I'm sure notmyname will show us eventually02:39
kota_mattolivearu: yeah. hope so.02:39
*** takashi has joined #openstack-swift02:45
*** jamielennox is now known as jamielennox|away02:56
*** abhitechie has joined #openstack-swift02:58
*** abhitechie has quit IRC03:34
*** Jeffrey4l has joined #openstack-swift03:41
*** sure has joined #openstack-swift03:48
*** sure is now known as Guest7628903:49
Guest76289Hii all, How to understand swift code flow03:49
Guest76289is there any reference links?03:49
Guest76289please someone help03:49
mattoliverauGuest76289: for the server side? I'd start with looking at how wsgi works, then you can understand how to proxy and storage servers fit together as do the middleware.04:15
mattoliverauGuest76289: there is a great oreilly book on openstack swift that explains it well.04:15
Guest76289mattoliverau: thanks and I have another doubt04:16
Guest76289mattoliverau: I configured swift with two nodes (one proxy and one storage) and i ran 20 threads of swift upload requests to one container at a time04:18
Guest76289my object size is 5.1GB04:18
Guest76289but all of them are failed with error status 503 service unavialable04:19
Guest76289mattoliverau: why it happend like this?04:19
mattoliverauGuest76289: where you using the swift client? And using segment size?04:25
*** klrmn has quit IRC04:39
Guest76289mattoliverau: my swift client is on my proxy node04:49
Guest76289mattoliverau: i am using segment size 128MB04:50
mattoliverauGuest76289: cool, so what's happening is the swift client is spliting up the object and sending it to the proxy at once04:53
Guest76289mattoliverau: yes04:54
mattoliverauGuest76289: then if you looked at the traffic from the Swift proxy to the storage node you'll see for each segment coming it is going to n number more connections for each replica.04:55
mattoliverauGuest76289: so look at your log and see what the error is. You might be DOSing yourself.04:56
mattoliveraucan you upload a smaller object?04:56
Guest76289mattoliverau: yes i tried with 100MB objects it's worked04:57
mattoliverauGuest76289: seeing as you only have 1 storage node, all the requests are hitting the same one04:57
Guest76289mattoliverau: yes i have only one storage node04:58
mattoliverauGuest76289: and if you have 20 swift client upload threads and 3x replication then you could have 60 connections to the one storage node.04:58
mattoliverauor does the 20 include the connections from the proxy to the storage node?04:58
Guest76289mattoliverau: I set replication factor as one in my setup04:58
mattoliverauoh04:59
mattoliverauStill you only have 1 storage node, so there is no redundency, so if it times out there (because of load) your going to get 503s. cause there is no other storage nodes to store the object one (primaries or handoffs)05:00
Guest76289mattoliverau: my servers are with 96GB RAM 32 cores05:00
mattoliverauSwift is a highly durable cluster.. but kinda needs more then 1 server. Or it wont be very durable.05:02
mattoliverauGuest76289: how many connections are you allowing?05:02
mattoliverauwhat is your connection timeout?05:02
mattoliveraulook at the logs and see whats causing the 50305:02
Guest76289mattoliverau: sorry where can i set that parameter's connections and connection time out05:02
mattoliverauGuest76289: your swift services have conn-timeout parameters, which default to 0.5 seconds (if not specified).05:05
mattoliverauGuest76289: tou can play with the max_clients per worker.. But maybe also look at you ulimits.05:07
mattoliverauGuest76289: but step one is to look at the swift logs and see where the bottleneck is happening. client > proxy or proxy > storage node. Look for any errors there.. that might pinpoint what's going on.05:07
mattoliverauGuest76289: I'm going to be in and out for the rest of my afternoon (what's left of it) and I'm preparing to head off to the Openstack summit and this is the last day of work before then.05:08
Guest76289mattoliverau: I will provide logs and at what time when you leave chat05:09
mattoliverauhard to say. I'm kinda running around atm.05:10
mattoliverauGuest76289: why are you only using 1 storage node?05:10
Guest76289mattoliverau: if i will use two or three storage nodes then my problem will be resolved?05:11
mattoliverauyeah, well swift can spread out the load more.. so the more you add the better it'll be.05:11
mattoliverauif your only going to have a few nodes... then you could use a PACO setup. where all nodes (both atm?) run the Proxy, Account, Container, and Object services (PACO).05:12
mattoliveraurather then using P - ACO which I assume your using. but with only 1 of each05:12
Guest76289mattoliverau: while uploading 5.1GB in 20 threads it is uploading some segments of some objects05:16
Guest76289mattoliverau: I will try with more storage nodes05:17
mattoliverauif you have a large object and your segmenting it up, then it's actually placing all the segments as individual objects then uses a SLO (static large object) to knit them together05:17
Guest76289mattoliverau: yes05:17
Guest76289mattoliverau: thanks for your time and have a  good time at OpenStack summit05:19
mattoliverauGuest76289: the idea of swift is it'll keep your data durable, but it can only be as durable as the number of replicas and storage nodes you give it. It'll always try and do the best it can, but with 1 replica, if it gets corrupted or a drive fails there is no others to use to fix it.05:19
mattoliverauGuest76289: thanks, good luck and enjoy using swift :)05:19
*** mingyu has joined #openstack-swift05:22
*** SkyRocknRoll has joined #openstack-swift05:25
*** ppai has joined #openstack-swift05:25
*** ppai has quit IRC05:35
*** ChubYann has quit IRC05:44
*** mingyu has quit IRC05:50
*** mingyu has joined #openstack-swift05:51
*** ppai has joined #openstack-swift05:54
*** mingyu has quit IRC06:06
*** McMurlock1 has joined #openstack-swift06:09
*** nizam037 has quit IRC06:13
*** mingyu has joined #openstack-swift06:20
*** mingyu has quit IRC06:49
*** Guest76289 has quit IRC06:51
*** tesseract has joined #openstack-swift06:56
*** tesseract is now known as Guest9695206:56
*** hseipp has joined #openstack-swift07:03
*** gabor_antal has quit IRC07:17
*** gabor_antal has joined #openstack-swift07:18
*** rledisez has joined #openstack-swift07:23
*** amoralej|off is now known as amoralej07:25
*** rcernin has joined #openstack-swift07:37
*** ppai has quit IRC07:37
*** takashi has quit IRC07:41
*** sams-gleb has joined #openstack-swift07:42
openstackgerritKazuhiro MIYAHARA proposed openstack/swift: WIP: Swift Automated Tiering  https://review.openstack.org/28705707:43
*** rcernin has quit IRC07:50
*** x1fhh9zh has joined #openstack-swift08:02
*** x1fhh9zh has quit IRC08:03
*** x1fhh9zh has joined #openstack-swift08:06
*** tries_ has quit IRC08:11
*** geaaru has joined #openstack-swift08:12
*** tries_ has joined #openstack-swift08:23
*** tries_ has quit IRC08:23
*** tries_ has joined #openstack-swift08:23
*** _JZ_ has quit IRC08:25
*** mingyu has joined #openstack-swift08:28
*** asettle has joined #openstack-swift08:37
*** mingyu has quit IRC08:41
onovyclayg: are you there? ping me pls, thx08:47
openstackgerritKota Tsuyuzaki proposed openstack/swift: Make ECDiskFileReader check fragment metadata  https://review.openstack.org/38765508:52
*** chlong has quit IRC08:53
kota_acoles: pushed a new version to fix a reader bug I and mattoliverau found in the review today.08:53
kota_acoles: and a small improvement in the test exists in the diff. Other nitpicks I found in the review are still there. To me, either is fine to address them at the patch or another. As you know, the patch is getting bigger (sorry) so I'm worried about the backporting may be affected.08:55
*** McMurlock1 has quit IRC09:09
*** acoles_ is now known as acoles09:14
acoleskota_: ack09:15
kota_hi acoles09:15
*** dosaboy has quit IRC09:18
acoleskota_: mattoliverau: oops I goofed up with the binary type check! yes, 'return' helps! in my defence, I did leave a comment that there was no test coverage for that clause.09:20
kota_acoles: I added the tests for coverage ;-)09:21
acolescool09:21
*** manous has joined #openstack-swift09:21
acolesso will this patch be a candidate for notmyname's new fuzzy approval logic... is sum(3 core co-authors plus mattoliverau) >= +2+209:23
acoles;-)09:24
*** dosaboy has joined #openstack-swift09:24
kota_acoles: great case study!!09:26
acoleskota_: I'll review the patch later today. have a good weekend/journey see you next week09:30
kota_acoles: thanks and you too for the safe trip to barcelona09:31
*** manous has quit IRC09:43
*** manous has joined #openstack-swift09:45
openstackgerritKazuhiro MIYAHARA proposed openstack/swift: Remove duplicated 'User-Agent' header from object-updater's requests  https://review.openstack.org/38899909:50
*** manous has quit IRC09:51
openstackgerritKota Tsuyuzaki proposed openstack/swift: WIP: Swift Automated Tiering  https://review.openstack.org/28705709:55
*** manous has joined #openstack-swift09:55
*** d0ugal has quit IRC09:56
openstackgerritRomain LE DISEZ proposed openstack/swift: WIP: diskfile: Only reclaim static file  https://review.openstack.org/38962709:58
*** manous has quit IRC10:00
*** asettle has quit IRC10:00
*** manous has joined #openstack-swift10:02
*** manous has quit IRC10:07
*** kei_yama has quit IRC10:07
*** ppai has joined #openstack-swift10:08
*** mariusv has joined #openstack-swift10:09
*** mariusv has quit IRC10:09
*** mariusv has joined #openstack-swift10:09
*** d0ugal has joined #openstack-swift10:12
*** mingyu has joined #openstack-swift10:13
*** d0ugal has quit IRC10:13
*** d0ugal has joined #openstack-swift10:14
*** ppai has quit IRC10:16
*** joeljwright has joined #openstack-swift10:43
*** ChanServ sets mode: +v joeljwright10:43
*** mingyu has quit IRC10:47
*** mingyu has joined #openstack-swift10:48
*** mingyu has quit IRC10:52
* kota_ is going to be back home.10:59
kota_acoles: if you need something I have to look at for the audit patch as urgent, please feel free to ping me at irc. maybe i can take time to look at tommorow morning.11:00
kota_and clayg:^^11:00
acoleskota_: ok. I may well fix some of your nits and push a new version but you can relax!11:01
kota_acoles: thx! and i just noticed you blame me... oops, it seems I was failing to cover :/11:02
kota_sorry my bad.11:02
kota_no? ah11:03
acoleskota_: actually I think one of your nits is a bug from me -  the fake response read() exception raising, I will fix that11:03
acoleskota_: what? did i blame you?11:03
kota_acoles: it looks like you commented to older one?11:03
acoleskota_: oh, no, I posted some draft comments that I did not post yesterday on patchset 6.11:04
kota_acoles: ah, ok. I thought the newest one still being a lack of coverage.11:04
acoleskota_: I had commented that the type checking in check_frag has no test coverage, but never published the comment, but you have already fixed that so all is well!11:04
kota_that feels me as blaming :/ sorry.11:04
acolesno no all is good :)11:05
kota_acoles: make sense :)11:05
kota_ok, let's back home with relax ;-)11:06
acolesgreat idea!11:06
*** pcaruana has quit IRC11:13
*** SkyRocknRoll has quit IRC11:22
openstackgerritRomain LE DISEZ proposed openstack/swift: Make handoffs_first per partition in reconstructor  https://review.openstack.org/34058411:43
openstackgerritRomain LE DISEZ proposed openstack/swift: WIP: reconstructor: do not sync recently moved parts  https://review.openstack.org/38967611:43
openstackgerritRomain LE DISEZ proposed openstack/swift: WIP: reconstructor: do not sync recently moved parts  https://review.openstack.org/38967611:44
*** amoralej is now known as amoralej|lunch12:32
*** d0ugal has quit IRC12:32
*** d0ugal has joined #openstack-swift12:35
*** d0ugal has quit IRC12:35
*** d0ugal has joined #openstack-swift12:35
*** silor has joined #openstack-swift12:36
*** asettle has joined #openstack-swift12:36
*** silor has quit IRC12:50
*** early has quit IRC13:00
*** x1fhh9zh has quit IRC13:02
*** x1fhh9zh has joined #openstack-swift13:03
*** mingyu has joined #openstack-swift13:05
*** early has joined #openstack-swift13:13
*** sayalilunkad has quit IRC13:23
ntatagood morning13:24
*** amoralej|lunch is now known as amoralej13:27
pdardeaugood morning13:37
openstackgerritNandini Tata proposed openstack/swift: Fix policy and ring usage from --swift-dir option  https://review.openstack.org/38823113:38
*** zul has quit IRC13:39
openstackgerritAlistair Coles proposed openstack/swift: Make ECDiskFileReader check fragment metadata  https://review.openstack.org/38765513:44
notmynamegood morning13:44
*** zul has joined #openstack-swift13:44
*** zul has quit IRC13:44
*** zul has joined #openstack-swift13:45
acolesclayg: ^^ like you I think I need to stand back and review this with some fresh eyes13:45
acolesnotmyname: good morning13:45
notmynameI'm flying to BCN tonight (via frankfurt)13:47
acoleshappy travelling13:50
notmynamethanks13:51
notmynameplan today is to see if there's any last minute stuff to do this morning, then pack and try not to forget my passport ;-)13:51
acoleskota_: clayg at first glance backporting patch 387655 doesn't seem as horrendous as I feared, in terms of merge conflict at least14:00
patchbothttps://review.openstack.org/#/c/387655/ - swift - Make ECDiskFileReader check fragment metadata14:00
*** asettle has quit IRC14:00
tdasilvanotmyname: have a good flight :)14:02
*** zhengyin has quit IRC14:10
*** cdelatte has joined #openstack-swift14:19
*** klamath has joined #openstack-swift14:26
*** klamath has joined #openstack-swift14:27
*** klrmn has joined #openstack-swift14:27
*** cbartz has joined #openstack-swift14:28
*** d0ugal has quit IRC14:28
*** ChubYann has joined #openstack-swift14:34
*** mingyu has quit IRC14:43
*** mingyu has joined #openstack-swift14:51
*** rledisez has quit IRC14:53
*** sams-gleb has quit IRC15:03
*** sams-gleb has joined #openstack-swift15:03
*** sgundur has joined #openstack-swift15:05
*** sams-gleb has quit IRC15:07
*** mingyu has quit IRC15:08
*** mingyu has joined #openstack-swift15:14
*** sgundur has quit IRC15:15
*** klrmn has quit IRC15:20
*** mingyu has quit IRC15:22
*** StevenK has quit IRC15:23
*** cbartz has left #openstack-swift15:24
*** rledisez has joined #openstack-swift15:24
*** rledisez has quit IRC15:26
*** mingyu has joined #openstack-swift15:27
*** sgundur has joined #openstack-swift15:28
*** sams-gleb has joined #openstack-swift15:28
openstackgerritAlistair Coles proposed openstack/swift: Make ECDiskFileReader check fragment metadata  https://review.openstack.org/38765515:29
*** StevenK has joined #openstack-swift15:31
*** mingyu has quit IRC15:32
acoleskota_: clayg fwiw I managed to backport this ^^ to mitaka without too much pain, patch 389746, obviously not to be merged.15:32
patchbothttps://review.openstack.org/#/c/389746/ - swift (stable/mitaka) - DO NOT MERGE - BACKPORT Make ECDiskFileReader chec...15:32
acolesnotmyname: fyi ^^15:33
*** sgundur has quit IRC15:33
*** chsc has joined #openstack-swift15:44
*** chsc has joined #openstack-swift15:44
*** sgundur has joined #openstack-swift15:50
*** x1fhh9zh has quit IRC15:50
*** x1fhh9zh has joined #openstack-swift15:52
*** x1fhh9zh has joined #openstack-swift15:53
*** x1fhh9zh has joined #openstack-swift15:53
*** x1fhh9zh has quit IRC15:54
*** x1fhh9zh has joined #openstack-swift15:54
*** x1fhh9zh has joined #openstack-swift15:55
*** Jeffrey4l has quit IRC15:55
*** x1fhh9zh has quit IRC15:55
*** cdelatte has quit IRC16:00
*** klrmn has joined #openstack-swift16:16
*** sams-gleb has quit IRC16:21
*** mingyu has joined #openstack-swift16:22
*** hseipp has quit IRC16:22
*** mingyu has quit IRC16:27
*** sgundur has quit IRC16:28
*** pdardeau has quit IRC16:30
*** pdardeau has joined #openstack-swift16:32
*** sgundur has joined #openstack-swift16:34
*** ukaynar has joined #openstack-swift16:45
*** acoles is now known as acoles_16:50
*** Guest96952 has quit IRC16:59
*** amoralej is now known as amoralej|off17:14
*** mingyu has joined #openstack-swift17:33
*** joeljwright has quit IRC17:34
*** itlinux has joined #openstack-swift17:38
itlinuxhello does anyone know where to download the nagios plugins for swift monitoring .. Thanks17:41
itlinuxI saw in swiftstack check_swift_background_daemon17:41
itlinuxbut I could not find where to download17:41
itlinuxTY17:41
*** tqtran has joined #openstack-swift17:54
*** sgundur has quit IRC17:55
notmynameitlinux: that's something that is part of swiftstack, not openstack swift. so best you'll do is https://www.swiftstack.com/docs/integration/nagios/index.html for the docs. but the script is part of the swiftstack product17:56
itlinuxok thanks17:56
*** sgundur has joined #openstack-swift17:59
*** McMurlock1 has joined #openstack-swift18:16
*** McMurlock1 has quit IRC18:20
*** geaaru has quit IRC18:25
*** McMurlock1 has joined #openstack-swift18:36
*** sgundur has quit IRC18:45
*** sgundur has joined #openstack-swift18:45
*** MVenesio has joined #openstack-swift18:49
*** tqtran has quit IRC18:52
*** sgundur has quit IRC18:54
*** sgundur has joined #openstack-swift18:54
*** sgundur has quit IRC19:07
*** MVenesio_ has joined #openstack-swift19:08
*** MVenesio has quit IRC19:11
*** mingyu has quit IRC19:19
*** silor has joined #openstack-swift19:34
*** McMurlock1 has quit IRC19:34
notmynametime to pack up. see you in BCN19:35
*** silor1 has joined #openstack-swift19:38
*** silor has quit IRC19:40
*** silor1 is now known as silor19:40
*** ukaynar has quit IRC19:42
*** ukaynar has joined #openstack-swift19:42
*** ukaynar has quit IRC19:47
*** ukaynar has joined #openstack-swift19:47
*** ukaynar has quit IRC19:57
*** x1fhh9zh has joined #openstack-swift20:05
*** ukaynar has joined #openstack-swift20:09
*** ukaynar has quit IRC20:09
*** x1fhh9zh has quit IRC20:09
*** ukaynar has joined #openstack-swift20:09
*** mingyu has joined #openstack-swift20:13
jrichlinotmyname: safe travels!20:14
*** itlinux has quit IRC20:19
*** MVenesio_ has quit IRC20:28
*** silor has quit IRC20:39
*** zul has quit IRC20:48
*** sgundur has joined #openstack-swift20:55
*** sgundur has quit IRC21:00
*** ukaynar has quit IRC21:02
*** mingyu has quit IRC21:05
*** ukaynar has joined #openstack-swift21:09
*** diogogmt has joined #openstack-swift21:09
*** vint_bra has quit IRC21:34
*** vint_bra has joined #openstack-swift21:36
*** vint_bra has quit IRC21:37
*** vint_bra has joined #openstack-swift21:38
*** vint_bra has quit IRC21:42
*** ukaynar has quit IRC21:46
*** geaaru has joined #openstack-swift21:59
*** urth has quit IRC22:10
*** urth has joined #openstack-swift22:13
*** mingyu has joined #openstack-swift22:20
*** mingyu has quit IRC22:25
*** caiobrentano_ has quit IRC22:29
*** diogogmt has quit IRC22:58
*** dosaboy has quit IRC23:01
*** ndk_ has quit IRC23:01
*** tarantool has quit IRC23:01
*** tarantool has joined #openstack-swift23:01
*** StevenK has quit IRC23:01
*** tries_ has quit IRC23:01
*** gabor_antal has quit IRC23:01
*** winggundamth has quit IRC23:01
*** swifterdarrell has quit IRC23:01
*** treyd has quit IRC23:01
*** blair has quit IRC23:01
*** philipw has quit IRC23:01
*** jistr has quit IRC23:01
*** jeblair has quit IRC23:01
*** ahale has quit IRC23:01
*** briancli1e has quit IRC23:01
*** tdasilva has quit IRC23:01
*** jaakkos has quit IRC23:01
*** ChanServ has quit IRC23:01
*** Administrator_ has quit IRC23:01
*** peterlisak has quit IRC23:01
*** charz has quit IRC23:01
*** kencjohnston has quit IRC23:01
*** clayg has quit IRC23:01
*** sileht has quit IRC23:01
*** sai has quit IRC23:01
*** urth has quit IRC23:01
*** mariusv has quit IRC23:01
*** vinsh has quit IRC23:01
*** hugokuo has quit IRC23:01
*** AndyWojo has quit IRC23:01
*** eranrom has quit IRC23:01
*** fbo has quit IRC23:01
*** acoles_ has quit IRC23:01
*** ntata has quit IRC23:01
*** madorn has quit IRC23:01
*** cppforlife_ has quit IRC23:01
*** janonymous has quit IRC23:01
*** samueldmq has quit IRC23:01
*** mcarden has quit IRC23:01
*** timss has quit IRC23:01
*** rsFF has quit IRC23:01
*** AbyssOne has quit IRC23:01
*** _fortis has quit IRC23:01
*** serverascode has quit IRC23:01
*** kozhukalov has quit IRC23:01
*** kong has quit IRC23:01
*** nottrobin has quit IRC23:01
*** ediardo has quit IRC23:01
*** kmARC has quit IRC23:01
*** amit213 has quit IRC23:01
*** zacksh has quit IRC23:01
*** sudorandom has quit IRC23:01
*** a1|away has quit IRC23:01
*** calebb has quit IRC23:01
*** dewanee_ has quit IRC23:01
*** briancurtin has quit IRC23:01
*** zhiyan has quit IRC23:01
*** hurricanerix has quit IRC23:01
*** htruta has quit IRC23:01
*** geaaru has quit IRC23:01
*** ChubYann has quit IRC23:01
*** natarej_ has quit IRC23:01
*** acorwin has quit IRC23:01
*** alpha_ori has quit IRC23:01
*** tonyb has quit IRC23:01
*** wer has quit IRC23:01
*** fungi has quit IRC23:01
*** sgundur1 has quit IRC23:01
*** bkeller` has quit IRC23:01
*** amoralej|off has quit IRC23:01
*** larsks has quit IRC23:01
*** mmotiani has quit IRC23:01
*** tanee has quit IRC23:01
*** aj701_ has quit IRC23:01
*** patchbot has quit IRC23:01
*** torgomatic has quit IRC23:01
*** jrichli has quit IRC23:01
*** andymccr has quit IRC23:01
*** david-lyle has quit IRC23:01
*** bobby2 has quit IRC23:01
*** mlanner has quit IRC23:01
*** raginbaj- has quit IRC23:01
*** hogepodge has quit IRC23:01
*** wasmum has quit IRC23:01
*** cargonza has quit IRC23:01
*** DuncanT has quit IRC23:01
*** jroll has quit IRC23:01
*** EmilienM has quit IRC23:01
*** vern has quit IRC23:01
*** ujjain- has quit IRC23:01
*** Raymii has quit IRC23:01
*** zigo has quit IRC23:01
*** kota_ has quit IRC23:01
*** tarantool has quit IRC23:01
*** klamath has quit IRC23:01
*** hoonetorg has quit IRC23:01
*** timburke has quit IRC23:01
*** CrackerJackMack has quit IRC23:01
*** pdardeau has quit IRC23:01
*** klrmn has quit IRC23:01
*** mvk has quit IRC23:01
*** balajir has quit IRC23:01
*** MooingLemur has quit IRC23:01
*** Anticimex has quit IRC23:01
*** mahatic has quit IRC23:01
*** lifeless has quit IRC23:01
*** early has quit IRC23:01
*** zaitcev has quit IRC23:01
*** cebruns_ has quit IRC23:01
*** ctennis has quit IRC23:01
*** portante has quit IRC23:01
*** tarantool has joined #openstack-swift23:06
*** klamath has joined #openstack-swift23:06
*** hoonetorg has joined #openstack-swift23:06
*** timburke has joined #openstack-swift23:06
*** CrackerJackMack has joined #openstack-swift23:06
*** tepper.freenode.net sets mode: +v timburke23:06
*** StevenK has joined #openstack-swift23:07
*** tries_ has joined #openstack-swift23:07
*** gabor_antal has joined #openstack-swift23:07
*** winggundamth has joined #openstack-swift23:07
*** swifterdarrell has joined #openstack-swift23:07
*** treyd has joined #openstack-swift23:07
*** blair has joined #openstack-swift23:07
*** philipw has joined #openstack-swift23:07
*** jistr has joined #openstack-swift23:07
*** jeblair has joined #openstack-swift23:07
*** ahale has joined #openstack-swift23:07
*** briancli1e has joined #openstack-swift23:07
*** tdasilva has joined #openstack-swift23:07
*** jaakkos has joined #openstack-swift23:07
*** tepper.freenode.net sets mode: +vv swifterdarrell tdasilva23:07
*** geaaru has joined #openstack-swift23:07
*** ChubYann has joined #openstack-swift23:07
*** larsks has joined #openstack-swift23:07
*** natarej_ has joined #openstack-swift23:07
*** acorwin has joined #openstack-swift23:07
*** alpha_ori has joined #openstack-swift23:07
*** tonyb has joined #openstack-swift23:07
*** wer has joined #openstack-swift23:07
*** fungi has joined #openstack-swift23:07
*** sgundur1 has joined #openstack-swift23:07
*** bkeller` has joined #openstack-swift23:07
*** amoralej|off has joined #openstack-swift23:07
*** mmotiani has joined #openstack-swift23:07
*** tanee has joined #openstack-swift23:07
*** aj701_ has joined #openstack-swift23:07
*** patchbot has joined #openstack-swift23:07
*** torgomatic has joined #openstack-swift23:07
*** jrichli has joined #openstack-swift23:07
*** andymccr has joined #openstack-swift23:07
*** tepper.freenode.net sets mode: +vv torgomatic jrichli23:07
*** Administrator_ has joined #openstack-swift23:07
*** peterlisak has joined #openstack-swift23:07
*** charz has joined #openstack-swift23:07
*** kencjohnston has joined #openstack-swift23:07
*** clayg has joined #openstack-swift23:07
*** sileht has joined #openstack-swift23:07
*** sai has joined #openstack-swift23:07
*** tepper.freenode.net sets mode: +v clayg23:07
*** early has joined #openstack-swift23:07
*** zaitcev has joined #openstack-swift23:07
*** cebruns_ has joined #openstack-swift23:07
*** ctennis has joined #openstack-swift23:07
*** portante has joined #openstack-swift23:07
*** tepper.freenode.net sets mode: +v zaitcev23:07
*** dosaboy has joined #openstack-swift23:07
*** pdardeau has joined #openstack-swift23:07
*** klrmn has joined #openstack-swift23:07
*** mvk has joined #openstack-swift23:07
*** balajir has joined #openstack-swift23:07
*** MooingLemur has joined #openstack-swift23:07
*** Anticimex has joined #openstack-swift23:07
*** mahatic has joined #openstack-swift23:07
*** lifeless has joined #openstack-swift23:07
*** urth has joined #openstack-swift23:08
*** mariusv has joined #openstack-swift23:08
*** vinsh has joined #openstack-swift23:08
*** hugokuo has joined #openstack-swift23:08
*** eranrom has joined #openstack-swift23:08
*** AndyWojo has joined #openstack-swift23:08
*** fbo has joined #openstack-swift23:08
*** acoles_ has joined #openstack-swift23:08
*** ntata has joined #openstack-swift23:08
*** madorn has joined #openstack-swift23:08
*** janonymous has joined #openstack-swift23:08
*** samueldmq has joined #openstack-swift23:08
*** mcarden has joined #openstack-swift23:08
*** _fortis has joined #openstack-swift23:08
*** timss has joined #openstack-swift23:08
*** rsFF has joined #openstack-swift23:08
*** AbyssOne has joined #openstack-swift23:08
*** serverascode has joined #openstack-swift23:08
*** kozhukalov has joined #openstack-swift23:08
*** ediardo has joined #openstack-swift23:08
*** kmARC has joined #openstack-swift23:08
*** amit213 has joined #openstack-swift23:08
*** zacksh has joined #openstack-swift23:08
*** sudorandom has joined #openstack-swift23:08
*** a1|away has joined #openstack-swift23:08
*** calebb has joined #openstack-swift23:08
*** dewanee_ has joined #openstack-swift23:08
*** briancurtin has joined #openstack-swift23:08
*** zhiyan has joined #openstack-swift23:08
*** hurricanerix has joined #openstack-swift23:08
*** htruta has joined #openstack-swift23:08
*** tepper.freenode.net sets mode: +v acoles_23:08
*** 32NAAEVOB has joined #openstack-swift23:08
*** wasmum has joined #openstack-swift23:08
*** jroll has joined #openstack-swift23:08
*** EmilienM has joined #openstack-swift23:08
*** vern has joined #openstack-swift23:08
*** ujjain- has joined #openstack-swift23:08
*** Raymii has joined #openstack-swift23:08
*** zigo has joined #openstack-swift23:08
*** kota_ has joined #openstack-swift23:08
*** tepper.freenode.net sets mode: +v kota_23:08
*** serverascode has quit IRC23:08
*** ediardo has quit IRC23:10
*** ChanServ has joined #openstack-swift23:11
*** tepper.freenode.net sets mode: +o ChanServ23:11
*** briancli1e is now known as briancline23:12
*** AndyWojo has quit IRC23:12
*** david-lyle has joined #openstack-swift23:13
*** bobby2 has joined #openstack-swift23:13
*** mlanner has joined #openstack-swift23:13
*** 18VAABSMN has joined #openstack-swift23:13
*** hogepodge has joined #openstack-swift23:13
*** 32NAAEVOB has quit IRC23:15
*** 32NAAEVOB has joined #openstack-swift23:15
*** cargonza has joined #openstack-swift23:21
*** chsc has quit IRC23:21
*** mingyu has joined #openstack-swift23:22
*** kong has joined #openstack-swift23:24
*** mingyu has quit IRC23:26
*** cppforlife_ has joined #openstack-swift23:26
*** geaaru has quit IRC23:27
*** ediardo has joined #openstack-swift23:29
*** nottrobin has joined #openstack-swift23:30
*** DuncanT has joined #openstack-swift23:33
*** serverascode has joined #openstack-swift23:34
*** jamielennox|away is now known as jamielennox23:35
*** AndyWojo has joined #openstack-swift23:40

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