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