Ask HN: S3 but with append?
Ideally, append-only.
Basically, what do you do if you want to pool a bunch of streams into a (potentially very large) log file?
Basically, what do you do if you want to pool a bunch of streams into a (potentially very large) log file?
3 comments
[ 2.3 ms ] story [ 27.4 ms ] threadThe google storage api has a mode where you can stream bytes, and it doesn’t become visible until you close it(and then can’t modify like s3). And unlike s3, it requires a delete permission to be able to overwrite, though with s3 you can turn on versioning and not give deleteobjectversion.
It won't be a single large file, but they'll all have the same prefix based on date. Most data processing tools will let you suck up an entire prefix and treat it like a single file.