I have a problem and possibly found a solution, however I have doubts that everything I think is possible to achieve with following technologies. To details: I have to write an application in Java that will solve some problem (details are not important). Mentioned problem can be solved by some algoritms. Each algoritm is solving in diffrent way. Everyone of them is computationally complex, but they can be distributed in many threads (and clusters). What's more, at the moment I want to implement only one algorithm, other in future, so I would like to my application be flexible and can join other algorithms in future. My technicaly solution is to use OSGi container and implement algorithms as bundles. I'll create an interface that will cover abstract algorithm solution, and in this way I will be able to join algorithms written in future without big cost (or maybe any?). However I've got some doubts:
- I know my description is very general, but do you think that this approach is good? Will that construction "survive"?:)
- I'm not quite sure if is possible to write multithread (or even multicluster) application using OSGi. And if it is possible, can I write in the same way like "normal" java app, using threadExecutors, futuretasks and so on?
- What about clustering problem? I found framework that allow that (http://mpj-express.org/) but as I reed the readme, the way it works can't be merged with OSGi bundle? Some suggestions about this?
Thanks in advance for any advices!