Project

Profile

Help

Task #2168

Updated by jcline@redhat.com over 7 years ago

Nectar is a wrapper around requests which attempts to provide an asynchronous API while masking the true requests API. It's aim is to make downloading easier, but causes a great deal of problems in both ease-of-use and error handling/reporting. Furthermore, it offers very few useful features to Pulp developers since it attempts to be general. 

 Below I include a sketchy plan for a download API. This needs to be fleshed out and a few choices need to get made, which is what this task is about. It then needs to be implemented as part of a plugin API. 

 h2. Feature Set 

 * An easy-to-use synchronous API that can handle HTTP/HTTPS and provides features like connection pooling, granular TLS configuration, etc. 

 * An easy-to-use asynchronous API that can handle HTTP/HTTPS and provides features like connection pooling, granular TLS configuration, a callback system, etc. 

 * Automatic handling of content validation (checksums, size, whatever)  

 * Automatic handling of storage to an appropriate backend (local storage, some object store, a temporary file, etc). 

 * Automatic creation of unit files that track where it is stored, how to validate it (in case of bitrot), all the places it can come from with optional priority weighting (this replaces both the lazy catalog and the alternate content source catalog) and network authentication information, etc. 

 * Automatic progress reporting 

 * Optionally creating the content units (maybe even associating them with a provided repository?) 

 * Shared connection pooling across all repositories and plugins 

 * Optional global concurrent connection configuration 

 h2. Synchronous API 

 I think that this should simply be requests, with some wrapping code to handle where it's stored, post-download validation, and model creation. We should expose the session API as-is to the user. 


 h2. Asynchronous API 

 This API is the API that requires some research and choices. There are several asynchronous HTTP clients that I am aware of, and there may be others. 

 # grequests 
 # requests-futures (Python 3 only) 
 # Twisted's web client 

 h3. grequests 

 grequests (https://github.com/kennethreitz/grequests) is a replica of the requests API powered by gevent. It is _very_ simple and does not provide any sort of callback system to handle certain events. It is not actively developed. 


 h3. requests-futures 

 This is a small add-on to the requests library that uses Python 3.3's concurrent.futures (https://docs.python.org/3.5/library/concurrent.futures.html) or the backport for Python 2.6+. It provides one additional kwarg, ``background_callback`` which lets you work with the Response objects requests generates, which could do things like write the the data to disk. 


 h3. Twisted 

 Twisted's web client provides a different API than the requests-based options. Instead, it uses the standard Twisted Deferreds and Failures (https://twistedmatrix.com/documents/current/core/howto/defer.html). Streaming is built-in and is handled by Twisted's Producers and Consumers (https://twistedmatrix.com/documents/current/core/howto/producers.html). 

 Twisted supports 

 * Connection pools (with configurable size and timeouts) 

 * Automatic retries (limited to one retry according to the documentation) 

 * Automatic redirect handling 

 * HTTP proxy support 

 * TLS (configurable trusted roots, client certificates, acceptable protocols, fine-grain control over the OpenSSL context via https://twistedmatrix.com/documents/16.4.0/api/twisted.internet.ssl.CertificateOptions.html) 

 h2. Conclusion 

 Of the three, I think Twisted is probably the most robust. It provides a well-documented callback system (which is already used in the Pulp streamer) and it looks like it offers all the features we need, although the configuration of timeouts and retries looks light currently (they, of course, accept pull requests!). 

 Twisted's callback chaining system also offers a handy way for users of Again, I recommend exposing whatever client library we choose to the asynchronous download API to hook user, with wrappers that provide additional functionality into the download process. 

 One downside to Twisted is that it requires a great deal of configuration to match the feature set requests offers by default. However, this only needs to be done once for plugin writers (unit storage and is, in the grand scheme of things, not terribly complicated. Another downside is that the users need to understand Twisted's callback system to add or modify download behavior, although this is probably not a common usecase. database record creation, handling non-unit temporary downloads, automatic validation, etc).

Back