Giter Club home page Giter Club logo

Comments (2)

fifarafa avatar fifarafa commented on June 24, 2024

@jasdel What retry strategy would you suggest for this type of operation? Are there any other services in the SDK that use similar approach to the one you suggested?

from aws-sdk-go-v2.

jasdel avatar jasdel commented on June 24, 2024

Thanks for asking @fifarafa. The idea behind this alternative approach is to allow the SDK to wrap the concept of retrying an S3 GetObject download attempt. The C++ SDK is the only SDK that uses a similar approach to this alternative approach. With a few exceptions (Glacier), S3 is the only API with operations to download byte streams.

The retry strategy for this approach would require the user to provide a io.Writer that can be reset/reinitialized in the case the download failed, and the API does not support byte-range requests. There are two strategies that could occur during a retry. If the API supports byte-range requests, the SDK could resume from the last byte it wrote to the user provided io.Writer. Alternatively if the API does not support byte-range requests the SDK would have to start downloading the content from the beginning, and requiring some means of being able to reinitialize the writer for a fresh write.

Both of these approaches seem fragile, and error prone. After reviewing this alternative approach, I'm not convinced it is a good idea for the SDK to invert the way it exposes downloading a byte stream from a API operation, e.g. S3 GetObject. For the S3 GetObject specific usecase the SDK's s3manager.Downloader provides much more consistent behavior since it was tailor made for S3's GetObject. The Downloader has full support for retrying failed GetObject requests.

from aws-sdk-go-v2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.