Project

General

Profile

Support #18894

Updated by Ward Vandewege about 2 years ago

Peter wrote this up a while ago, it should be added to the documentation at https://doc.arvados.org/architecture/manifest-format.html 

 ================================================================================================================= 
 Here's a formula for estimating manifest size, assuming efficiently packed blocks.    This is including the block signatures, which makes it bigger than the size of the manifest in the database, because that is what is actually transferred to/from the API server and stored in RAM by arv-mount. 

 sum(size of all directory paths) 
 + (total data size / 64 MB) * 94 
 + sum(size of all file names) 
 + sum(number of files * 20) 
 ================================================================================================================= 

Back