True Power of Java EE and JMS: Distributed Computations!
Join the DZone community and get the full member experience.
Join For FreeBack in 2011 I was writing a PhD about evaluating and measuring
quality of Web Services compositions. I had a system where I focued on evaluating
WS-BPEL processes (but the framework I designed was extremely flexible
and supports any business scenario technology).
The system (called Measurement System DIES) is a Java EE application. It
is designed in a distributed manner which makes scaling out and
distributing computations very easy.
Out of pure curiosity, I decided to do stress tests. Apache
Geronimo did not survive this nor did the embedded ActiveMQ. After I
killed Geronimo and started it again all queues stopped working... I had
to install brand new instance of Geronimo.
But thanks to Java EE capabilities and the distributed nature of my
system I was able to overcome this problem. See how I did it with JMS
and distributed computations!
The EJB module of my application
- Queue for execution orders - each execution of a WS-BPEL process instance may last minutes (I have a 10 minutes timeout set up),
- Queue for asynchronous computing of quality and performance score of each activity trace - this task usually takes up to 4 seconds to complete (most of the time spent here is to query external services like geolocation services),
- Timer for computing statistics - every 10 seconds I retrieve all completed instances which are not yet analysed and conduct some statistical computations.
The development environment
While developing my system I used 1 box for everything:
- Apache Geronimo with my Java EE application and embedded ActiveMQ server
- Apache ODE as an WS-BPEL execution engine
- IBM DB2 pureXML
I managed to get a second machine. Based on that I decided to distribute my components this way:
1st computer:
- Apache Geronimo with my Java EE application with Timer but without Queue components
- IBM DB2 pureXML
- Apache ODE as an execution engine
- Apache Geronimo with EJB module with Queue components
- Standalone ActiveMQ
- 3rd for IBM DB2 pureXML database
- 4th for Apache ODE
Distributing components
Here is what I did:
- I split my EJB components. I moved my two queues into a separate project and deployed them to Apache Geronimo installed on the second machine. I decided to leave the Timer component in the original EJB project.
- I downloaded a standalone ActiveMQ server and installed it on the second machine.
- Finally I configured connection factories for both Apache Geronimos. I used the wizard offered by Geronimo's Admin Console - it was childishly simple! I use application-wide JMS resources and just compared the generated deployment plans with the ones I already had. It turned out that I had to add 1 line to my deployment plans - the external server url. NICE! This is how the enterprise configuration should look like!
I re-ran my stress test. Both Geronimos and ActiveMQ survived :)
What was the improvement rate? Hard to say... In Java when you add, subtract, multiply or divide NaN by any other number you still get NaN. I know one thing for sure, the first configuration did not survive the stress test :)
Conclusions
Always keep in mind that some day your system will have to be distributed or scaled out. At the design stage it's far more easier to introduce basic enterprise architectural patterns and concepts than to introduce them during the maintenance phase (when, for example, task distribution would have a huge impact on the whole system).
cheers,
Łukasz
Opinions expressed by DZone contributors are their own.
Trending
-
Integrating AWS With Salesforce Using Terraform
-
The Role of AI and Programming in the Gaming Industry: A Look Beyond the Tables
-
Database Integration Tests With Spring Boot and Testcontainers
-
Send Email Using Spring Boot (SMTP Integration)
Comments