S
Shabam
I have a dotnet application and it allows users to store images. These
images are partitioned by directories so as to prevent overflow of files in
any specific folder.
However, for scalability reasons I have 2 questions:
1)
How can I increase disk space infinitely as the need arises, without
changing the path structure? Are there solutions that will allow me to pile
on more servers and the total disk space would be recognized and the data
spread out? Or would I need to map more and more directories onto different
servers?
2)
These images will be accessed via the web. I'd like each hit to go directly
to the correct image server, rather than routing through the mapped drive,
through the main server. What are some methods to get this done?
images are partitioned by directories so as to prevent overflow of files in
any specific folder.
However, for scalability reasons I have 2 questions:
1)
How can I increase disk space infinitely as the need arises, without
changing the path structure? Are there solutions that will allow me to pile
on more servers and the total disk space would be recognized and the data
spread out? Or would I need to map more and more directories onto different
servers?
2)
These images will be accessed via the web. I'd like each hit to go directly
to the correct image server, rather than routing through the mapped drive,
through the main server. What are some methods to get this done?