←back to thread

194 points kbumsik | 5 comments | | HN request time: 0.822s | source
1. zmmmmm ◴[] No.41894393[source]
Just remember, the mininum billing increment for file size is 128KB in real AWS S3. So your Git repo may be a lot more expensive than you would think if you have a giant source tree full of small files.
replies(3): >>41894455 #>>41896027 #>>41896785 #
2. afro88 ◴[] No.41894455[source]
Looks like it uses bundles rather than raw files: https://github.com/awslabs/git-remote-s3?tab=readme-ov-file#...
3. justin_oaks ◴[] No.41896027[source]
That 128KB only applies to non-standard S3 storage tiers (glacier, infrequent access, one zone, etc)

S3 standard, which is likely what people would use for git storage, doesn't have that minimum file size charge.

See the asterisk sections in https://aws.amazon.com/s3/pricing/

replies(1): >>41898990 #
4. chrsig ◴[] No.41896785[source]
also the puts are 5x as expensive as the get operations
5. zmmmmm ◴[] No.41898990[source]
Thank you for highlighting that, I had remembered it wrongly.