2024-12-18T12:48:30.371Z | <Anoop C S> ejbdccuuifhvgkrtcekcknfcjirlnnbuiftfbtfiivjv |
2024-12-18T13:51:17.851Z | <Bailey Allison> ya I hear ya |
2024-12-18T16:25:49.559Z | <Casey Bodley> weekly rgw meeting starting soon in [ <https://pad.ceph.com/p/rgw-weekly](https://meet.google.com/mmj-uzzv-qce> ) empty agenda so far |
2024-12-18T16:32:58.129Z | <Joseph Mundackal> @Casey Bodley - has the meeting started? waiting to be let in 🙂 |
2024-12-18T16:35:04.274Z | <Casey Bodley> we're in, yes - i don't see your request to join |
2024-12-18T16:35:30.035Z | <Casey Bodley> <https://meet.google.com/mmj-uzzv-qce> |
2024-12-18T16:36:15.741Z | <Joseph Mundackal> definately had a random meet link before!
thanks! |
2024-12-18T19:38:55.467Z | <Anirudh Jayakumar> Hi Devs! I'm looking at Ceph docs here for [S3 compatibility](https://docs.ceph.com/en/latest/radosgw/s3/) and I don't see ListObjects supported. Is this due to the underlying sharded metadata implementation preventing efficient sorted listing? |
2024-12-18T19:39:57.451Z | <Casey Bodley> we do support ListObjects, ListObjectsV2 and ListObjectVersions |
2024-12-18T19:41:35.844Z | <Casey Bodley> though you're right that the listing doesn't scale well to many shards |
2024-12-18T19:46:00.098Z | <Anirudh Jayakumar> Thanks @Casey Bodley!
I'm asking due the same reason. I work on a similarly sharded ObjectStore and I was looking at efficient ways to provide sorted lists.
Also, does Ceph support [delimiter](https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html) in ListObjects (unix `ls` style listing). If yes wondering if there are some special indexing in the metadata layer that allows for this. |
2024-12-18T20:05:18.611Z | <Casey Bodley> we do support the prefix/delimiter stuff, yeah |
2024-12-18T20:06:24.405Z | <Casey Bodley> there isn't any special indexing, but listing will skip over the common prefixes it finds |
2024-12-18T20:22:59.750Z | <Anirudh Jayakumar> Thanks! |