For my Django site, I'd like to:
- Accept images submitted by users
- Generate thumbnails from those images
- Put both the original images and the thumbnails onto separate, multiple servers that are dedicated to serving images
I need multiple, separate servers to serve the images/thumbnails to ensure I have enough IO performance.
What is the best way to build a distributed image serving system like this? Any open source software that would help?
Thanks.