Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Cloud"

m (Software)
m
 
(9 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
=Cloud Enabled EclipseLink : CEE=
 
=Cloud Enabled EclipseLink : CEE=
 
<div style="border: 3px red solid;" align="center" ><font color="red">DISCLAIMER: This page reflects investigation into how EclipseLink technology can used as part of - or benefit from integration with other projects. It does NOT imply any formal certification from EclipseLink on these technologies or make any assumptions on the direction of the API.  This page is purely experimental speculation.</font></div>  
 
<div style="border: 3px red solid;" align="center" ><font color="red">DISCLAIMER: This page reflects investigation into how EclipseLink technology can used as part of - or benefit from integration with other projects. It does NOT imply any formal certification from EclipseLink on these technologies or make any assumptions on the direction of the API.  This page is purely experimental speculation.</font></div>  
 +
<!--
 
==Scope==
 
==Scope==
 
*This page started 20101020 details thoughts, initiatives or projects surrounding performance optimization through use of Cloud Computing hardware running EclipseLink as a layer of their software stack.
 
*This page started 20101020 details thoughts, initiatives or projects surrounding performance optimization through use of Cloud Computing hardware running EclipseLink as a layer of their software stack.
Line 16: Line 17:
  
 
==Software==
 
==Software==
*We will investigate various levels of networking scenarios that link our distributed JVM nodes.
 
===Base Case 1: Pure custom Distributed RMI===
 
====EE Distributed Session Bean====
 
*Deploy this on each of your WebLogic servers
 
<source lang="java">
 
@Stateful(mappedName="ejb/Node")
 
@Local
 
public class Node implements NodeRemote, NodeLocal {
 
    private int transition;
 
    private int state;
 
       
 
    public void setState(int aState) {
 
        System.out.println("_Distributed: new state: " + aState);
 
        state = aState;
 
    }
 
   
 
    public int getState() {
 
        return state;
 
    }
 
   
 
    public int getAdjacent(int offsetX, int offsetY) {
 
        return 1;       
 
    }
 
}
 
 
@Remote
 
public interface NodeRemote {
 
    //####<15-Sep-2010 1:21:15 o'clock PM EDT> <Info> <EJB> <xps435> <AdminServer> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1284571275760> <BEA-010009>
 
    //<EJB Deployed EJB with JNDI name org_eclipse_persistence_example_distributed_ClientEARorg_eclipse_persistence_example_distributed_ClientEJB_jarNode_Home.>
 
    public void setState(int state);
 
    public int getState();
 
    public int getAdjacent(int offsetX, int offsetY);
 
}
 
 
</source>
 
====SE client====
 
*Run this on one of the servers or a separate SE JVM
 
<source lang="java">
 
package org.eclipse.persistence.jmx;
 
 
import java.util.ArrayList;
 
import java.util.HashMap;
 
import java.util.Hashtable;
 
import java.util.List;
 
import java.util.Map;
 
 
import javax.naming.Context;
 
import javax.naming.InitialContext;
 
import javax.rmi.PortableRemoteObject;
 
 
import org.eclipse.persistence.example.distributed.NodeRemote;
 
 
/**
 
* This class tests RMI connections to multiple WebLogic servers running on
 
* remote JVM's.  It is intended for experimental concurrency investigations only.
 
* @author mfobrien 20100916
 
*
 
*/
 
public class JNDIClient {
 
    public static final List<String> serverNames = new ArrayList<String>();
 
   
 
    private Map<String, Hashtable<String, String>> contextMap = new HashMap<String, Hashtable<String, String>>();
 
    private Map<String, Context> rmiContextMap = new HashMap<String, Context>();   
 
    private Map<String, NodeRemote> remoteObjects = new HashMap<String, NodeRemote>();   
 
    private Map<String, Integer> stateToSet = new HashMap<String, Integer>();
 
    private static Map<String, String>  serverIPMap = new HashMap<String, String>();
 
   
 
    private static final String CONTEXT_FACTORY_NAME = "weblogic.jndi.WLInitialContextFactory";
 
    private static final String SESSION_BEAN_REMOTE_NAME = "ejb/Node#org.eclipse.persistence.example.distributed.NodeRemote";
 
    //private String sessionBeanRemoteName = "java:comp/env/ejb/Node"; // EE only
 
    //private String sessionBeanRemoteName = "org_eclipse_persistence_example_distributed_ClientEARorg_eclipse_persistence_example_distributed_ClientEJB_jarNode_Home" ;
 
 
    /**
 
    * For each server add the name key and corresponding RMI URL
 
    */
 
    static {
 
        // Beowulf5 on Cat6 1Gb/Sec
 
        serverNames.add("beowulf5");
 
        serverIPMap.put("beowulf5", "t3://192.168.0.165:7001");
 
        // Beowulf6 on Cat6 1Gb/Sec
 
        serverNames.add("beowulf6");
 
        serverIPMap.put("beowulf6", "t3://192.168.0.166:7001");
 
    }
 
 
    public JNDIClient() {
 
    }
 
   
 
    public void connect() {
 
        /**
 
        * Note: only import weblogic.jar and naming.jar
 
        */
 
        // For JNDI we are forced to use Hashtable instead of HashMap
 
        // populate the hashtables
 
        for(String aServer : serverNames) {
 
            Hashtable<String, String> aTable =  new Hashtable<String, String>();
 
            contextMap.put(aServer,aTable);
 
            aTable.put(Context.INITIAL_CONTEXT_FACTORY,CONTEXT_FACTORY_NAME);
 
            aTable.put(Context.PROVIDER_URL, serverIPMap.get(aServer));
 
        }
 
 
        /**
 
        * Setup and connect to RMI Objects
 
        */
 
        try {           
 
            // Establish RMI connections to the session beans
 
            for(String aServer : serverNames) {
 
                Context aContext = new InitialContext(contextMap.get(aServer));
 
                rmiContextMap.put(aServer, aContext);
 
                System.out.println("Context for " + aServer + " : " + aContext);
 
                // For qualified name look for weblogic log "EJB Deployed EJB with JNDI name"
 
                Object aRemoteReference = aContext.lookup(SESSION_BEAN_REMOTE_NAME);       
 
                System.out.println("Remote Object: " + aRemoteReference);       
 
                NodeRemote aNode = (NodeRemote) PortableRemoteObject.narrow(aRemoteReference, NodeRemote.class);
 
                remoteObjects.put(aServer, aNode);
 
                System.out.println("Narrowed Session Bean: " + aNode);       
 
                // initialize state list
 
                stateToSet.put(aServer, new Integer(0));
 
            }
 
           
 
            NodeRemote aNode;
 
            StringBuffer aBuffer = new StringBuffer();         
 
            // Endlessly generate RMI requests
 
            for(;;) {
 
                // Send messages to entire grid in parallel
 
                for(String remoteServer : remoteObjects.keySet()) {
 
                    aNode = remoteObjects.get(remoteServer);
 
                    // increment server's pending state
 
                    stateToSet.put(remoteServer, stateToSet.get(remoteServer).intValue() + 1);
 
                    aNode.setState(stateToSet.get(remoteServer));
 
                    aBuffer = new StringBuffer("State from: ");
 
                    aBuffer.append(remoteServer);
 
                    aBuffer.append(" = ");
 
                    aBuffer.append(aNode.getState());                 
 
                    System.out.println(aBuffer.toString());
 
                }
 
            }
 
        } catch (Exception e) {
 
            e.printStackTrace();
 
        }
 
    }
 
   
 
    public static void main(String[] args) {
 
        JNDIClient client = new JNDIClient();
 
        client.connect();
 
    }
 
}
 
</source>
 
 
===OTS 1: EclipseLink Cache Coordination===
 
===OTS 2: TopLink Grid (uses Coherence)===
 
  
 
==Hardware==
 
==Hardware==
Line 178: Line 29:
 
====PC4:beowulf6: Windows XP 32-bit 2 core Intel P630====
 
====PC4:beowulf6: Windows XP 32-bit 2 core Intel P630====
 
*192.168.0.166
 
*192.168.0.166
 
+
-->
 
==References==
 
==References==
 
*[http://csrc.nist.gov/groups/SNS/cloud-computing/ NIST definition of Cloud Computing]
 
*[http://csrc.nist.gov/groups/SNS/cloud-computing/ NIST definition of Cloud Computing]
Line 187: Line 38:
 
*[http://www.infoworld.com/d/cloud-computing?source=footer Cloud Computing Channel - InfoWorld]
 
*[http://www.infoworld.com/d/cloud-computing?source=footer Cloud Computing Channel - InfoWorld]
 
*[http://en.wikipedia.org/wiki/Acadia_(technical_partnership) VBlock Virtualization initiative]
 
*[http://en.wikipedia.org/wiki/Acadia_(technical_partnership) VBlock Virtualization initiative]
 +
*[http://en.wikipedia.org/wiki/Jazelle Jazelle] enables [http://en.wikipedia.org/wiki/ARM9E ARM 9E] chips to run Java bytecode in hardware (this not a Parallax Propeller running assembly language) - mostly for J2ME not JEE.

Latest revision as of 22:50, 13 November 2011

Cloud Enabled EclipseLink : CEE

DISCLAIMER: This page reflects investigation into how EclipseLink technology can used as part of - or benefit from integration with other projects. It does NOT imply any formal certification from EclipseLink on these technologies or make any assumptions on the direction of the API. This page is purely experimental speculation.

References

Back to the top