I think uploads might be better parallelized than downloads at this point. I 
will have a look.

________________________________________
From: sneha kamath <sne.ka...@gmail.com>
Sent: Sunday, June 5, 2016 11:58 PM
To: dev@jclouds.apache.org
Subject: Download object performance for jclouds for swift.

Hi,

I was using the Jclouds blobstore api for swift object storage to download
an object of size 8GB. I observe that the download time is more than hour.

Blob blob = blobStore.getBlob("container", "object");

InputStream in = blob.getPayload().getInput();

File targetFile = *new* File("filepath");

 FileUtils.*copyInputStreamToFile*(in, targetFile);

The same download using python swift client took just around 4 minutes.

Am I missing any configuration or parameter tuning ? Is it supposed to be
this slow or is there any other way I can read the file ?


Thanks,

Sneha

Reply via email to