Does anyone know how sites like www.dropboks.com and other online storage websites are built? What technology? How would you go about developing a simple non-commercial online file storage system?
|
2
|
|
|
|
|
|
It is based on the CORRECT way of implementing a RESTful API service. I apologize. I mis-read your original question. I thought you wanted to use an online file storage solution. I re-read the question and I see you want to BUILD an online storage solution to scale. There are many solutions for this. I am only familiar with the Windows side of things; but, you can use the built-in DFS (Distributed File System) in Windows 2003/2008 to make "Namespace" clusters that look like a normal share like:
But DFS allows you to add multiple machines, disks, and partitions to the single clusterd namespace instance; therefore, making it look like just one extremely large drive. DFS also supports replication. Unfortunately, Microsoft does scale cost-effectively to something as large as Amazon S3 because of the cost of OS licensing and the IT management nightmare. These online services most likely use a Unix NFS solution to distribute the files amongst several host servers. It's by far the most cost-effect way to scale to 100s of machines. As a side note, RackSpace just released their own "UNS" as they call it. If you are in RackSpace's new phase, you have the option for UNS - while slightly higher storage costs than Amazon, there's no bandwidth measuring. |
|||
|
|
