Project

General

Profile

Bug #3663

Updated by Tom Clegg over 9 years ago

The manifest format makes it possible to describe a single file consisting of a small amount of data from each of many large data blocks. 
 * "foo.txt consists of the first 4 bytes of 64M blob A, followed by the first 4 bytes of 64M blob B, ..." 

 When this happens, clients should expect poor performance, but there are two things we should do to make this less painful. 
 # (Big improvement in a future story) Retrieve partial content from Keep. Doing an HTTP request per 4-byte segment will be slow, but much faster than doing an HTTP request and 64MB of disk and network traffic per 4-byte segment! 
 # (Small improvement in this story) After fetching a full (or partial) block from Keep, there is always at least one byte ready to return to the caller. Return the available data to the caller right away. Don't fetch the next block until the next @read()@ call. 

 This is the offending code in @sdk/python/arvados/stream.py@: 

 <pre><code class="python"> 
     def read(self, size): 
         """Read up to 'size' bytes from the stream, starting at the current file position""" 
         if size == 0: 
             return '' 

         data = '' 
         for locator, blocksize, segmentoffset, segmentsize in locators_and_ranges(self.segments, self._filepos, size): 
             data += self._stream.readfrom(locator+segmentoffset, segmentsize) 
         self._filepos += len(data) 
         return data 
 </code></pre> 

 Rather than looping through locators_and_ranges, it should get as much data as it can from the _first element_ of locators_and_ranges, and return that. 

 This mimics the "behavior of io.read()":https://docs.python.org/2/library/io.html#io.RawIOBase, except that we don't [yet] support the "unspecified @size@" and "@size=-1@" shortcuts. 

Back