I have a lot of image files, and I want to upload all of them (about a million in a single directory) to RackSpace Cloud files in the fastest and most efficient way.
I'm using the python-cloudfiles
script to upload them but it is very slow and I want to know different ways or python script code.
Probably it is very slow because it using one connection of each upload. I think to send all files in a tar and uncompress the directory is better way. but Cloud files do not support this way.
Who know any other way?