Reputation: 34920
Let's say we have an object stored on S3. Is it possible to read it in the reverse byte order? Does S3 API provide with such a functionality?
I need to read a huge file in the reverse order because it was written in the reverse order by someone else. I don't want to do that in memory, I don't want to save the file on my local disk and then read it again.
Upvotes: 1
Views: 719
Reputation: 179364
No, this is not possible.
You can download the entire file or a range request of any single contiguous range of bytes, but this always happens in the same order that they were uploaded.
Upvotes: 3