|
|
|
|
|
by Dave3of5
953 days ago
|
|
You haven't given specific of this to be blunt no idea what you mean. I already said my points about the problems your follow-up comments have not addressed those. Also there is no such thing in s3 as a cold GET there is a cold startup for a lambda. The latency from s3 on a get is orders of magnitude poorer that EBS or LSSD and should be used "infrequently". |
|
> What about transactionality, partial updates, running multi document queries, consistency of the whole set of documents.
You do that in another layer on top. The filesystem doesn't provide transactions, yet you do them on a layer on top.
> In terms of scalability there are, limits 3500rps per key prefix.
The S3 metadata is (was?) sharded on key-prefix. You fix this by using more prefixes. By hashing the filenames or something.
> The latency from s3 on a get is orders of magnitude poorer that EBS or LSSD and should be used "infrequently".
Yes, it is. You should use a local SSD for most things.