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
- 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)
- 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:
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
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.