Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an external hard drive, which stores extremely large files. This is LOCAL and is connected to my laptop/desktop.

I run many different programs on a REMOTE Linux server.

I need to use some of the large files (stored in the external drive) as input to the program(s) that will run on the Linux server.

====================================== One solution is to FTP the large files from the external hard drive to the Linux server and then run the program(s).

This often leads to the following two problems: - The server has space problems

- File transfer is time consuming

I want to know if there are some alternative solutions by which the data stored on the LOCAL external drive may become visible to my programs running on the REMOTE Linux server.

Regards,

share|improve this question
1  
You can probably share the external drive across the network to your server, but how you do this would depend on a number of factors including your local operating system, relative network locations (are you on the same LAN as the server?) and security requirements. In any case, the time consumption point is moot; you have to transfer the data one way or another. Local storage on the server would be best, to prevent repeated transfers. – eaj Dec 31 '12 at 17:21
No, I am not on the same LAN as the server and it is not easy to store all the data on the server. Even then, is it possible to make the data visible to the server? Regards, – Dibyendu Dec 31 '12 at 17:24
As I said, the means of doing so would depend on several factors. This isn't really a programming question, and so not really appropriate for SO. – eaj Dec 31 '12 at 17:27
Yes, this is not at all a programming question. Can you suggest an appropriate forum where I should post this question? – Dibyendu Dec 31 '12 at 17:32
Probably superuser.com or serverfault.com would be better bets. – eaj Dec 31 '12 at 17:33
show 1 more comment

closed as off topic by Carl Norum, thkala, Petesh, Peter O., ethrbunny Dec 31 '12 at 18:32

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

(This is not a programming question - I will give it a shot, but I fully expect it to be migrated...)

A few things to consider:

  • If the remote programs are going to be accessing the whole file, as would happen with e.g. a typical word-count program, then you are going to have to transfer the data, one way or another. Sending the files themselves is probably the simplest solution - just make sure to use compression before sending the data over.

  • If the remote programs are going to be accessing small bits here and there, you might be able to use the local computer as a server for the data - even HTTP supports partial file downloads. Alternatively, you might be able to export a filesystem with those files to the remote server.

  • If the data is structured and the remote server will be using small bits here and there, you might be better off loading the data on a database that will run on the local computer and allowing DB access for the remote server.

  • If the data is rarely modified, or it is just added to, then you might be better off storing the files on the remote server from the start and then just sending any updates, by using either a remote DB server for structured data, or something along the lines of rsync for flat files.

  • Have you considered offloading part of the data processing to the local computer? Depending on what you are doing, performing a bit of pre-processing locally could significantly reduce the amount of data that you have to send over.

  • Any particular reason to use a remote server for large amounts of local data? Considering the bandwidth costs, it might just be less costly to purchase a couple of machines to perform the processing locally.

Unless you tell us more about what you are doing, why you have the current data/processing separation and what exactly does "extremely large files" mean for you, it is impossible to be more specific...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.