I've been using Spring3 MVC for building a web application. One of the features of this web application is uploading a large file. The problem is uploading file size is very big - up to 8 Gbytes !!!
Can I use Hadoop with Spring3 ? What I need to do is
1) I need to upload file (or files or directory of files) up to 8 Gbytes using Hadoop
2) store the uploaded files in our local file server
FYI, Our current system is using opensource - valumn ajax file uploader, but it has many issues, esp. performance issue and the case when the network is disconnected during the uploading a large file. So I'm surveying other options to handle issues.
1) using other opensource/applications for file uploader
2) using Spring Batch?
3) Hadoop?
4) Implement Java from the scratch which takes too much time and effort
Any suggestions?


Reply With Quote