Project

General

Profile

Idea #7696

Updated by Tom Clegg over 8 years ago

The KeepClient in the Python SDK will only talk to services that have a known type: either disk, or proxy.    It should connect to services of any type.    For any type that isn't disk, it should follow the rules that we currently follow when connecting to proxies: 

 * Only allow one writer thread at a time. 
 * Use "proxy" timeouts. 
 * Respect the replication headers in the response. 

 Test case: 
 * Create some keep_services with service_type="fancynewblobstore" 
 * Ensure those keep services are used when reading and writing 
 * Ensure thread count == 1 

Back