OpenSearch/src
tlrx 4bc4ea6fca BlobStore: BlobContainer interface changed in elasticsearch 1.4.0
Adding a S3OutputStream that upload blobs to the S3 Storage service with two modes (single/multipart).
When the length of the chunk is lower than buffer_size (default to 5mb), the chunk is uploaded with a single request.
Otherwise multiple requests are made, each of buffer_size (except the last one which can be lower than buffer_size).
For example, when uploading a blob (say, 1Gb) with chunk_size set for accepting large chunks (chunk_size = 5Gb) and buffer_size set to 100Mb, the blob will be sent into 10 multiple parts, each of ~100Mb. Each part upload may failed independently and will be retried 3 times.

Closes #117
2014-10-16 10:24:13 +02:00
..
main BlobStore: BlobContainer interface changed in elasticsearch 1.4.0 2014-10-16 10:24:13 +02:00
test BlobStore: BlobContainer interface changed in elasticsearch 1.4.0 2014-10-16 10:24:13 +02:00