amazon web services - Maximum no.of connections that can be held by s3 -
i learning amazon web services. want know maximum number of connections(roughly) can held amazon s3 simultaneously without crashing...
theoretically infinite. achieve this, use partitioning scheme explain here: http://docs.aws.amazon.com/amazons3/latest/dev/request-rate-perf-considerations.html
basically partition buckets on different servers based on first few characters of filename. if random, scale indefinitely (they take more characters partition on). if prepend files file_
or (so s3 cannot partition files correctly because files have same starting characters), limit 300 / sec or 100 put/delete/post per second.
see page in-depth explanation.
Comments
Post a Comment