Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone please help brainstorm some ideas to solve this problem: The application receives thousands of files every day. Everything is running on distributed platform (more than 3 processing nodes). The key requirements are that this application should be able

  1. to distribute these files to different nodes based on load and some other criteria determined at runtime.(It may also read some of files for some per-processing but its not key req)
  2. it should be able to schedule them or throttle them depending on runtime conditions (the files belong to 4-5 categories each going to different consumer applications)

I have found two solutions but not sure if they are best:

  1. Customize jenkins to add custom jobs (one for each category) that can pick up respective files and route and also consider all load conditions etc

  2. Custom Java EE application using MDB. A file reader scheduled job runs continuously picking file and adding its name and other details in different queues (based on file category). MDBs pick each file info and act based on load etc.

Both the above solution suffer from the Java EE limitation when it comes to dealing with file systems.

share|improve this question
Obviously such an app will not be delivering it's payload on a realtime basis. You should investigate a pairing of a load balancer and a message broker. What specific filesystems limitations are you referring to? – kolossus Jan 13 at 2:44
Thanks a lot @Kolossus, the files are coming all day, hence app will deliver realtime. I guess the interval of time where it stops and makes new decisions would be 5 min or 30 min (not sure). I am referring to the fact that if the app is developed using MDB or any other beans they can run on any node. Hence they can not rely on filesystem path. Lets assume – Sohel Khan Jan 15 at 17:56
Lets assume that the code decides that file1 should be moved to node2 for processing, but it may be itself running on node3 and file path of node4. When i add file info to queue i can add all info, so the code in container can still do ftp or scp to move around files. Not sure if its clean way to do this. – Sohel Khan Jan 15 at 19:04
There are several frameworks out there to support batch processing. You could start here: static.springsource.org/spring-batch – Mark O'Connor Jan 15 at 20:34
@SohelKhan, you're right in working toward a decentralized environment, but going by what obtains in my environment, the actual repository is a single entity (which could possibly be replicated) that functions as a (proprietary) document management system; The distributed access to this repository is abstracted to the DAO layer in the form of MQs and webservices.Look at DocMgr or Alfresco. Using a proper ECM, all you have to worry about is replication and access endpoints – kolossus Jan 15 at 21:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.