Skip to main content

Posts

Showing posts with the label ParallelProcessing

JPPF: an Java Open Source solution for parallel processing

JPPF ( http://www.jppf.org/ ) is a Java framework which can help to implement and run a parallel Java program. It allows a Java application to run independent parts of it on different machines in parallel in order to dramatically reduce their processing time. It is useful to split a computing-intensive Java application into several mostly independent parts (which are typically called tasks). JPPF is Open Source and released under the Apache license 2.0. These are the main features of this framework: Allows a grid (a server, to which any number of execution nodes are attached.) to be up and running in minutes. Provides a simple programming model that abstracts the complexity of distributed and parallel processing . It's an highly scalable (from small to large networks) and distributed framework for the parallel execution of cpu intensive tasks. Provides seamless integration with the most popular J2EE application servers (IBM WebSphere, JBoss, WebLogic, etc.).   ...