presentation on GridGain

23
GridGain – Java Grid Computing Made Simple Nikita Ivanov www.gridgain.org

description

 

Transcript of presentation on GridGain

Page 1: presentation on GridGain

GridGain – Java Grid Computing Made Simple

Nikita Ivanovwww.gridgain.org

Page 2: presentation on GridGain

Agenda• GridGain

• What is Grid Computing and why?• What is GridGain and why?• Why Java and Open Source?• Key Concepts

• Demos• Grid Application in 15 Minutes• Running JUnits on Grid

GridGain – Java Grid Computing Made Simple

Slide 2

Page 3: presentation on GridGain

Slide 3

What is Grid Computing?•Compute Grids

•Parallelize logic execution•Data Grids

•Parallelize data storage•Grid Computing = Compute Grids + Data Grids

•Data Partitioning + Affinity Map/Reduce

GridGain – Java Grid Computing Made Simple

Page 4: presentation on GridGain

Product. Business. People. Slide 4

Why Grid Computing?•Ask Google, Yahoo, eBay, Amazon•Solves problems often unsolvable otherwise

•Google has ~1,000,000 nodes in its grid

•Uniformed programming paradigm •Scales from garage to Google

Page 5: presentation on GridGain

What is GridGain?• Grid computing framework

• Compute + Data = Grid Computing• Innovative MapReduce • Integration with leading Data Grids

• Ground-breaking simplicity• Java centric

• Built in Java and for Java• REST and .NET compatible

• Open source• LGPL/Apache license

GridGain – Java Grid Computing Made Simple

Slide 5

Page 6: presentation on GridGain

Why GridGain?• Existing projects are:

•Too complex to use•Globus, GridEngine anyone?

•Too expensive to use•$M for DataSynapse, Platform, UD

•Not Java-based or Java friendly•Alien to Java 5 and JEE

GridGain – Java Grid Computing Made Simple

Slide 6

Page 7: presentation on GridGain

Professional Open Source• GridGain - Professional Open Source

• Open source => Free• Software • Upgrades• Community support• Source code• No gimmicks

• Plus commercial enterprise-level support and services

• Indemnification• Custom SLAs• Guaranteed response time• Advanced management & monitoring

• Like JBoss, Spring Source, Mule Source…GridGain – Java Grid Computing Made Simple

Slide 7

Page 8: presentation on GridGain

Key Concepts• MapReduce• Zero Deployment• On Demand Scalability• Fault Tolerance• Blend-In Integration• Transparent Grid Enabling• Data Grids Integration• JMX-based Monitoring

Slide 8GridGain – Java Grid Computing Made Simple

Page 9: presentation on GridGain

MapReduce

Slide 9

1. Task execution request

2. Task splits into jobs3. Result of job execution4. Aggregation of job

results

GridGain – Java Grid Computing Made Simple

Page 10: presentation on GridGain

MapReduce Example

Product. Business. People. Slide 10

Page 11: presentation on GridGain

Zero Deployment• Peer-to-Peer On-Demand Class Loading

technology• No Ant scripts to run• No JARs to copy or FTP• No nodes to restart

• Develop in EXACTLY the same way as locally• Change->Compile->Run on the grid

• Start many grid nodes in • Single JVM – debug grid apps locally (!)• Single computer – run grid on your workstation

• Single biggest developers’ productivity boostSlide 11GridGain – Java Grid Computing Made

Simple

Page 12: presentation on GridGain

On Demand Scalability

Slide 12GridGain – Java Grid Computing Made Simple

Page 13: presentation on GridGain

Fault Tolerance• Customizable failover resolution

• Automatic failover• Fail-fast, fail-slow implementation

• Failure – is result too• Redundant jobs• Asynchronous results processing

• Policy-based continuation• Checkpoints for long-running tasks

• “Smart” restart in case of failover

Slide 13GridGain – Java Grid Computing Made Simple

Page 14: presentation on GridGain

Blend-In Integration

• Checkpoints• Failover • Collision Resolution• Topology management• Load balancing• Deployment

• Service Provider Interface (SPI)-based architecture• Plug in and customize almost any aspect of grid computing

framework• LEGO-like assembly of custom grid infrastructure

• Grid computing framework aspect that are fully pluggable:

Slide 14

• Communication• Discovery• Tracing• Startup• Event storage

GridGain – Java Grid Computing Made Simple

Page 15: presentation on GridGain

Blend-In Integration, cont.

Application Servers• JBoss AS• BEA Weblogic• IBM Websphere• Glassfish• TomcatData Grids• JBoss Cache• Coherence• GigaSpacesAOP• JBoss AOP• Spring AOP• AspectJ

Messaging Middleware• Mule• JMS

• ActiveMQ• SunMQ

• Jgroups• Email• TCP, IP-MulticastOthers• Spring• Junit• JXInsight

“Out-of-the-box” integration with:

Slide 15GridGain – Java Grid Computing Made Simple

Page 16: presentation on GridGain

Transparent Grid Enabling01 class BizLogic {02   @Gridify(…) 03   public static Result process(String param) {04     ...05   }06 }07 08 class Caller {09   public static void Main(String[] args) {10     GridFactory.start();11 12     try {13       BizLogic.process(args[0]);14     }15     finally {16       GridFactory.stop();17     }18   }19 }

Slide 16

Execution of process() method will be performed on the grid

GridGain – Java Grid Computing Made Simple

Page 17: presentation on GridGain

Data Grids Integration• Compute + Data = Grid Computing

• Compute grids parallelize processing logic

• Data grids parallelize data storage• JBoss Cache, Oracle Coherence

• Affinity Map/Reduce – ability to co-locate processing logic and the data• Minimizes “noise” traffic• Optimal grid load and performance

GridGain – Java Grid Computing Made Simple

Page 18: presentation on GridGain

Data Grid Integration, cont.

Slide 18GridGain – Java Grid Computing Made Simple

Page 19: presentation on GridGain

Data Grids Integration, cont.• GridGain full stack grid computing:

• GridGain+JBoss Cache• Full OPEN SOURCE grid computing platform• Native integration

• GridGain+Coherence Data Grid• Native integration

• GridGain+GigaSpaces Data Grid• One compute grid - many data grids

• Freedom of choiceSlide 19GridGain – Java Grid Computing Made

Simple

Page 20: presentation on GridGain

JMX-Based Monitoring• Full JMX instrumentation

• Every SPI• Kernal

• Flexible access• Programmatic via JMX API• From GUI JMX console

• Jboss Management• Hyperic• JConsole

Slide 20GridGain – Java Grid Computing Made Simple

Page 21: presentation on GridGain

Roadmap• GridGain 2.0.0 is out on February 12th,

2008

• GridGain 2.0.1 is out on March 7th, 2008• GridGain 2.1 – Q308

• Mobile Grid Computing: Google Android• Utility or on-demand computing: Amazon

EC2• Web 2.0 Grid Computing: REST + JSON• Enhanced Management and Monitoring

Slide 21GridGain – Java Grid Computing Made Simple

Page 22: presentation on GridGain

Demos• Java 5/Eclipse 3.2/Windows XP• GridGain 2.0

GridGain – Java Grid Computing Made Simple

Slide 22

Page 23: presentation on GridGain

Q & A

Slide 23

Thanks for your time!

Nikita Ivanov: [email protected]: www.gridgain.org

GridGain – Java Grid Computing Made Simple