VMware Infrastructure 3 Book Excerpt and Author Interview
VMware Infrastructure 3: Advanced Technical Design Guide and Advanced Operations Guide provides a wealth of practical insights into setting up virtualization in todays corporate environments.
Tracking change and innovation in the enterprise software development community
Posted by Jason Lai on Jul 18, 2006 11:44 AM
The Java Parallel Processing Framework (JPPF) has been making frequent point releases recently. Currently at version 0.22, it is designed to distribute application tasks over a cluster of computers and coordinate their execution in parallel. JPPF is made up of a client layer in which client apps request task executions, a service layer/JPPF Driver that queues execution requests from the client layer which will be taken by available nodes to process asynchronously, along with load balancing and recovery capabilities, and an execution layer on each node of the computation grid responsible for executing atomic tasks in parallel whose code is dynamically loaded from the JPPF driver.
Defining a task is straight forward:
public class MyTask extends JPPFTask
{
public void run()
{
... my code ...
setResult(theComputationResult);
}
}
public class MyTaskSubmitter
{
//Submit the tasks and wait for their execution.
public void submit() throws Exception
{
JPPFClient jppfClient = new JPPFClient();
ListtaskList = new ArrayList ();
taskList.add(new MyTask());
jppfClient.submit(taskList, null);
}
}
The key features of JPPF include:
Licensed under the terms of LGPL, JPPF is aimed to be an open source alternative to the grid computing solution, in addition to the existing ones such as Globus, Sun's Grid Engine and Teragrid.
Hibernate without Database Bottlenecks
IBM software architect eKit: Grady Booch podcast, whitepapers, articles
JProbe Freeware – Eclipse Plugin for efficient memory analysis and diagnosis
Introducing application infrastructure virtualization and WebSphere Virtual Enterprise
Guide to Calculating ROI with Terracotta Open Source JVM Clustering
JavaSpaces seems as a better fit here. See GigaSpaces with advanced master/worker framework , HA , GUI and CLI tools etc. Shay
JavaSpaces is not an easy API to use to build applications with. The best api for work management might just be a WorkManager API ;-) .. you guys should check out both the IBM/BEA "commonj" APIs as well as the JSR 236/237 work that is a derivative of it. We've supported a grid implementation of WorkManager for a while now, and the feedback (ease of use, etc.) has been very positive. Peace, Cameron Purdy Tangosol Coherence: The Java Data Grid
JavaSpaces is not an easy API to use to build applications with.
The best api for work management might just be a WorkManager API ;-) .. you guys should check out both the IBM/BEA "commonj" APIs as well as the JSR 236/237 work that is a derivative of it.
Very kewl suggestion Cameron. I love the Workmanager pattern, generally speaking. How do I get access to your grid implementation to play around with it?
There are several legitimate APIs out there. One should distinguish API from implementation. The implementation is what provides effective parallelism; the API has to be flexible and useable. Many people believe that a master/worker pattern based on Space semantics is adequate. For those who prefer a higher -level API, we offer Spring Remoting of the Space Based Architecture stack. Guy Nirpaz GigaSpaces: Write Once Scale Anywhere
There are quite a few assumptions in this framework around how best to cluster. I am now concerned it might be a tad "too large." I will have to look into it more closely. Then again, my view of truly "simple" is--by now sounding like a broken record--true POJOs with nothing but the JDK or the JDK and Spring. I think Jonas Bonér offered up a very clean solution here: http://www.theserverside.com/news/thread.tss?thread_id=40552
I hope Terracotta solves this problem in a much simpler and cleaner way .
VMware Infrastructure 3: Advanced Technical Design Guide and Advanced Operations Guide provides a wealth of practical insights into setting up virtualization in todays corporate environments.
Can a system that is so large it cannot be comprehended be "designed" in a conventional sense? The foundations of computing are about to change. In this talk, Richard P. Gabriel explores why and how.
Ruby 1.9's Fibers and non-blocking I/O are getting more attention - we talked to Mohammad A. Ali of the NeverBlock project and Tony Arcieri of the Revactor project.
Tim Mackinnon talks about the aspirations behind the Agile principles and practices, the desire to become efficient, to write quality code which does not end up being thrown away.
Brian Goetz discusses the difficulties of creating multithreaded programs correctly, incorrect synchronization, race conditions, deadlock, STM, concurrency, alternatives to threads, Erlang, Scala.
Often the hardest part of changing technologies is language syntax differences. This new article provides Java developers with a transition guide to Actionscript which forms the foundation of Flex.
Neal Ford talks about having multiple languages running on one of the two major platforms: Java and .NET. He also presents the advantages offered by Ruby compared to static languages like Java or C#.
David Anderson talks about the history of Agile, the current status of it and his vision for the future. The role of Agile consists in finding ways to implement its principles.
6 comments
Reply