openstackgerrit | Charles Hsu proposed openstack/python-swiftclient master: Support uploading Swift symlinks without content. https://review.opendev.org/694211 | 01:51 |
---|---|---|
openstackgerrit | Charles Hsu proposed openstack/python-swiftclient master: Support v3 application credentials auth. https://review.opendev.org/699457 | 01:52 |
clayg | @timburke I think I would have prefered the zipkin for vsaio do a git clone with a local dev pip install | 02:44 |
*** psachin has joined #openstack-swift | 03:35 | |
openstackgerrit | Merged openstack/swift master: Ensure domain stored in memcached gets utf8 decoded on py2 https://review.opendev.org/706187 | 04:15 |
*** gyee has quit IRC | 04:20 | |
openstackgerrit | Sam Morrison proposed openstack/swift master: Monkey patch as early as possible https://review.opendev.org/708274 | 04:50 |
*** evrardjp has quit IRC | 05:34 | |
*** evrardjp has joined #openstack-swift | 05:34 | |
manuvakery | clayg: timburke opened a bug report in lp for container listing | 06:34 |
*** openstack has joined #openstack-swift | 07:19 | |
*** ChanServ sets mode: +o openstack | 07:19 | |
*** openstack has joined #openstack-swift | 07:43 | |
*** ChanServ sets mode: +o openstack | 07:43 | |
*** tesseract has joined #openstack-swift | 08:06 | |
*** tkajinam has quit IRC | 08:11 | |
*** ccamacho has joined #openstack-swift | 08:15 | |
*** takamatsu has quit IRC | 08:27 | |
openstackgerrit | Charles Hsu proposed openstack/python-swiftclient master: Allow users to list containers/objects by size. https://review.opendev.org/708074 | 08:29 |
*** rdejoux has quit IRC | 08:30 | |
*** viks___ has quit IRC | 08:34 | |
*** mvkr has joined #openstack-swift | 08:36 | |
*** rpittau|afk is now known as rpittau | 08:37 | |
*** mikecmpbll has joined #openstack-swift | 08:51 | |
*** viks___ has joined #openstack-swift | 09:11 | |
*** Jeffrey4l has quit IRC | 09:12 | |
*** Jeffrey4l has joined #openstack-swift | 09:13 | |
*** takamatsu has joined #openstack-swift | 11:32 | |
*** rpittau is now known as rpittau|bbl | 11:40 | |
*** jvisser has joined #openstack-swift | 11:41 | |
*** takamatsu has quit IRC | 12:08 | |
*** takamatsu has joined #openstack-swift | 12:13 | |
*** rcernin has quit IRC | 12:37 | |
*** jvisser_ has joined #openstack-swift | 12:41 | |
*** jvisser has quit IRC | 12:42 | |
*** jvisser_ has quit IRC | 12:49 | |
*** jvisser_ has joined #openstack-swift | 13:00 | |
*** rpittau|bbl is now known as rpittau | 13:02 | |
*** irclogbot_0 has quit IRC | 14:56 | |
*** irclogbot_0 has joined #openstack-swift | 15:02 | |
*** psachin has quit IRC | 15:09 | |
clayg | manuvakery: thank you! | 15:30 |
*** gyee has joined #openstack-swift | 16:36 | |
*** rpittau is now known as rpittau|afk | 16:48 | |
*** jvisser_ has quit IRC | 17:06 | |
*** jvisser has joined #openstack-swift | 17:10 | |
*** evrardjp has quit IRC | 17:34 | |
*** evrardjp has joined #openstack-swift | 17:34 | |
*** mikecmpbll has quit IRC | 17:49 | |
openstackgerrit | Tim Burke proposed openstack/swift master: Revert "Make rolling-upgrade job non-voting until virtualenv problem is solved" https://review.opendev.org/708719 | 18:10 |
*** hegemoOn has joined #openstack-swift | 18:33 | |
hegemoOn | hello | 18:33 |
*** tesseract has quit IRC | 19:16 | |
*** mvkr has quit IRC | 19:27 | |
*** jvisser has quit IRC | 20:49 | |
seongsoocho | morning o/ | 20:54 |
timburke | seongsoocho, o/ | 20:55 |
timburke | almost meeting time! | 20:55 |
kota_ | o/ | 20:57 |
mattoliverau | morning | 21:01 |
timburke | clayg, zaitcev, mattoliverau ^^^ | 21:01 |
*** jvisser has joined #openstack-swift | 21:04 | |
openstackgerrit | Sam Morrison proposed openstack/swift master: Monkey patch as early as possible https://review.opendev.org/708274 | 21:51 |
*** mvkr has joined #openstack-swift | 21:58 | |
rledisez | seongsoocho: we should talk about what you did with md5/sha256. I'm currently implementing the possibity of using an other algorithm for ensuring data integrity (making the etag algo configurable would then be quite easy) | 22:03 |
clayg | rledisez: I think a note in the change log is probably reasonable | 22:03 |
clayg | rledisez: we've done that with storage policies | 22:03 |
zaitcev | clayg: Indeed that dark data thing was intended as a reference for auditor API. I used to have a completely separate review for it. | 22:03 |
clayg | "here's a new feature! by default it does nothing and works without changes... BUT if you want to use it - you better upgrade EVERYONE first" | 22:03 |
rledisez | clayg: work perfect for me. I'm mostly done on the object-server side. I'll start working on proxy-side this week | 22:04 |
clayg | rledisez: ok, as long as operator has a manual trigger to turn it on and it's off by default that's probably entirely reasonable. | 22:04 |
seongsoocho | rledisez: Ini my case, the customer can setting the etag algorithm in container system metadata. like `swift post tcon -H 'X-Optional-Hash-Algorithm: sha256'` | 22:04 |
seongsoocho | And When the proxy-server store the object and target container has a sysmeta `x-container-sysmeta-hash-algorithm`, the proxy-server calculate the checksum and store it in object metadata `X-Optional-Hashed-Value`. | 22:07 |
zaitcev | Not liking a ETag syntax like sha256:"nnnnnnnn"? | 22:07 |
zaitcev | A whole new header, I dunno if it's okay. | 22:07 |
rledisez | zaitcev: on the object server i'm storing etag that way: {SCHEME}value eg: {CRC32C}f5bc69d2a | 22:12 |
rledisez | without scheme, it's assumed to be an MD5 | 22:12 |
zaitcev | Right. That works too, in case your encoding has colons | 22:13 |
rledisez | seongsoocho: what was your goal/need to implement something else than md5? my goal is speed so I wouldn't have chose sha | 22:14 |
rledisez | seongsoocho: is it a middleware or inside the proxy-server? | 22:15 |
seongsoocho | rledisez It is inside the proxy-server. but I think it would be better in middleware. My goal is to follow government security guidelines. Some customer should use SHA256 or SHA512 to follow government security guidelinese. So the swift must support different checksum algorithm. | 22:19 |
rledisez | ok, thx for the note, very interesting. | 22:20 |
seongsoocho | :-) | 22:21 |
rledisez | i'll keep that in mind, maybe we can build that on what i'm doing (it's gonna be a middleware). i hope to push something next week | 22:22 |
*** jvisser has quit IRC | 22:25 | |
seongsoocho | great ! I'm happy to help. | 22:31 |
*** tkajinam has joined #openstack-swift | 22:58 | |
*** rcernin has joined #openstack-swift | 23:04 | |
*** mvkr has quit IRC | 23:42 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!