Re: [Openstack] [OpenStack] [Swift] Does Swift3 supports SLO (Manifest creation)?

2016-10-11 Thread Alexandr Porunov
Hello, It is what I need. Thank you very much Sincerely, Alexandr On Wed, Oct 12, 2016 at 4:04 AM, Kota TSUYUZAKI < tsuyuzaki.k...@lab.ntt.co.jp> wrote: > Hello Alexandr, > > Swift3 supports Multipart Upload API for actual Amazon S3[1] which has > similar functionality with Swift SLO manifest

Re: [Openstack] [OpenStack] [Swift] Does Swift3 supports SLO (Manifest creation)?

2016-10-11 Thread Kota TSUYUZAKI
Hello Alexandr, Swift3 supports Multipart Upload API for actual Amazon S3[1] which has similar functionality with Swift SLO manifest so that you can use any SDK for s3 multiupload api. It needs, 1. init a multipart Upload 2. upload segments (chunk you may call) 3. complete the multipart upload

[Openstack] [OpenStack] [Swift] Does Swift3 supports SLO (Manifest creation)?

2016-10-11 Thread Alexandr Porunov
Hello, I want to use S3 API for OpenStack Swift but I need chunked upload for my files. I want to save many small object (1-10 MB) and retrieve them as a single object. For it I need to be able to create a manifest file. Does Swift3 support manifest creation? If yes then where can I see an