Presentation is loading. Please wait.

Presentation is loading. Please wait.

OGCE Overview: Services, Gadgets, and Tags Marlon Pierce, Suresh Marru, Gregor von Laszewski, Mary Thomas, Maytal Dahan, Gopi Kandaswamy, Rion Dooley,

Similar presentations


Presentation on theme: "OGCE Overview: Services, Gadgets, and Tags Marlon Pierce, Suresh Marru, Gregor von Laszewski, Mary Thomas, Maytal Dahan, Gopi Kandaswamy, Rion Dooley,"— Presentation transcript:

1 OGCE Overview: Services, Gadgets, and Tags Marlon Pierce, Suresh Marru, Gregor von Laszewski, Mary Thomas, Maytal Dahan, Gopi Kandaswamy, Rion Dooley, and Wenjun Wu

2 Links for More Information Website: http://www.collab-ogce.orghttp://www.collab-ogce.org News/RSS/Blog: http://collab-ogce.blogspot.comhttp://collab-ogce.blogspot.com Email: discuss@ogce.orgdiscuss@ogce.org SVN Code Repository: http://ogce.svn.sourceforge.net/viewvc/ogce/ http://ogce.svn.sourceforge.net/viewvc/ogce/ And get tar.gz’s Source Forge: http://sourceforge.net/projects/ogcehttp://sourceforge.net/projects/ogce See us at SC08: IU booth 1:00-3:00 on Tuesday, November 18.

3 ProjectDescriptionStatus Grid PortalPackaged, one step installation of Grid portlets into Tomcat+Gridsphere Stable, V2.4 for SC08 Axis ServicesOne step install of Resource Discovery and Prediction Services. More services to come. Dev. Release for SC08. Workflow SuiteSupport for scientific workflows, based on LEAD tools. Suresh will describe next time. Dev. Release for E-Science GTLABJSF Tag Libraries for building Grid portlets and Gadgets Dev. Release for SC08 JavaScript COG (Cyberaide) JavaScript libraries for building Grid gateways. Dev. Preview for SC08 Gadget ContainerOpen Social Inspired container for I Google gadget Dev. Preview for SC08 Incubator projects Pylons portals, metascheduling services, bio-gadgets, etc. SVN if you dare Services, Workflow, GTLAB, Cyberaide, and Gadget container are part of an emerging stack

4 OGCE and Gateways We develop and package software for use by Gateways. A lot of this comes from active Gateways. GPIR: TeraGrid User Portal Workflow tools: LEAD Resource Discovery Service, File Browser Applet: GridChem Gateways OGCE Software OGCE Software

5 GPIR for Facebook, iGoogle GPIR: GridPort Information Repository, stores dynamic and static resource information for VOs Facebook Mini TeraGrid system monitor and full size system monitor Mini: http://apps.facebook.com/mini_tgsys mon/ Full Size: http://apps.facebook.com/tgsysmon/ Google Mini System monitor for iGoogle page To add visit: http://www.google.com/ig/adde?mod uleurl=http://iola.tacc.utexas.edu:22 080/gpir- app/minigpir.xml&nocache=1&source= imag http://www.google.com/ig/adde?mod uleurl=http://iola.tacc.utexas.edu:22 080/gpir- app/minigpir.xml&nocache=1&source= imag GPIR Facebook App

6 OLSGW Bio-gadgets Job Submission History gadget Blast gadget ClustalW gadget

7 Some OGCE Services New things available for download

8 Resource Discovery Service Extracted from the GridChem project/gateway Contributed by Rion Dooley Axis2 Web service Integrates information from INCA, GPIR services. What machines are in my Grid^H^H^H^H Cloud? What are the service names? Which ones are actually running? Works with TeraGrid deployed services, but you can use it with your own information service installations.

9 Resource Prediction Service (RPS) Predicts an optimal set of resources for running scientific applications – Predicts a set of resources on which the sum of data transfer time, queue wait time and compute time for the application will be minimum – Data transfer time: Uses input data size and NWS info – Queue wait time: Uses QBETS info – Compute time: Uses application performance info Axis2 web service with a MySQL backend RPS is a subset of the Fault Tolerance and Recovery service used in LEAD and VGrADS

10 Packaging Services Everything builds with one command mvn clean install We use Apache Maven 2 for builds. Structured, modular builds and consistent layouts Build a single module: mvn clean install –f somemod/pom.xml We include Apache Tomcat in the download, so all you need is Java and MySQL. Suitable also for the NMI build and test system. Want the Javadoc? mvn javadoc:javadoc

11 GTLAB Tag Libraries for building gadgets and portlets out of reusable parts.

12 User’s Browser JavaScript OGCE Gadget Container iGoogle, Facebook GTLAB Gadgets TeraGrid ServicesOther Services RPS, RDS, GPIR Services GTLAB’s Relationship to Other Components

13 MyProxy Example <o:submit id="submit" value="Submit" binding="#{builder.body}" action="#{builder.junkAction}" > <o:myproxy id="mypr" hostname="#{resource.myproxyHostname}" lifetime="2" password="#{resource.password}" port="7512" username="#{resource.username}"/>

14 Executing Multiple Task <o:submit id="submit" value="Submit" binding="#{builder.body}" action="#{builder.junkAction}" > <o:multitask id="multi" persistent="true" taskname="#{resource.taskname}"> <o:jobsubmit id="js" myfaces="true" arguments="#{resource.arguments}" executable="#{resource.executable}" hostname="#{resource.hostname}" provider="#{resource.provider}" stdout="#{resource.stdout}"/> <o:filetransfer id="ft" myfaces="true" from="#{resource.from}" to="#{resource.to}" />

15 GTLAB Features Extends Java Server Faces. o Tag components wrap major COG Abstraction Layer features o And Web Service clients, GridShib, etc. o Supports tag inter-dependencies. Allows you to do standalone development. Use JSF portlet bridge to convert into portlets  No new coding, just add/modify XML config files and jars. Or forget about portlets and o Convert into Google Gadgets o Develop as a Facebook application o Etc.

16 Installing GTLAB Download the release code from www.collab-ogce.org or check out from SVN:www.collab-ogce.org o svn checkout https://ogce.svn.sourceforge.net/svnroot/ogce/GTLAB https://ogce.svn.sourceforge.net/svnroot/ogce/GTLAB o SourceForge also supports tar.gz downloads o Tagged release in http://ogce.svn.sourceforge.net/viewvc/ogce/tags/ http://ogce.svn.sourceforge.net/viewvc/ogce/tags/ Run “mvn clean install” in GTLAB directory. Download includes a web server. Start with “./startup.sh”, go to http://localhost:8080/GTLAB

17 What’s New with GTLAB? Completely revised dependency graph processing. Removed dependence on COG graph processing (still use the COG) We can now support graphs of any tag you care to write. Only support pipelines currently, not full DAGs Redesigned to simplify writing new tags. Extensive use of factories. You no longer have to change core code to add a tag Simplified process of creating new tags 4 Java files and 3 XML config files Now can be done in one (mvn) step Many new tags

18 Levels of Abstraction in GTLAB code You can use prepackaged gadgets/portlets. You can develop new applications using existing tag libraries. You can make new tags for your services You can hack or steal the code Note JSF is compatible with JSP, so you can mix and match. And you can embed JavaScript YUI, Scriptaculous user interface goodies. Google and Facebook APIs.

19 TagDescription MyProxyGets a proxy credential (COG) JobSubmitRuns remote commands (COG) FileOperationCreate, delete, list remote files and dirs (COG) FileTransferGridFTP downloads, 3 rd party transfers (COG) XSubmissionOutputFormat outputs of job and file operations ResourceDiscoveryClients for the RDS ResourcePredictionClients for the RPS MyCommunityProxyGet and decorate TG Community credentials with Grid Shib Community LogLog use of TG Community credentials

20 GTLAB ExampleDescription MyProxyExampleGet a credential and store in OGCE global proxy store. JobSubmitExamplesVarious examples showing how to submit a grid job and get output. Dashboard ExamplesRuns showq on Big Red, Cobalt, and Mercury and formats output. DirectoryBrowserDisplays and downloads files on a remote host via GridFTP MultipleTaskExampleShows how to couple file transfers, operations, and These will work as gadgets, portlets, or standalone applications

21 GTLAB Gadgets Code Base GTLAB Portlets Code Base Tomcat Web Server Tomcat Web Server + Portlet Container iGoogle Client Aggregator Compile and deploy into server Decorate with bridge and container jars, xml config files. GTLAB gadgets can also run as portlets with no code changes by using the JSF portlet bridge.

22 GTLAB Applications as Google Gadgets: MOAB dashboard, remote directory browser, and proxy management.

23 What’s next? OpenID and RSS client support Support for more complicated graphs JavaScript/AJAX actions as well as HTML FORM actions. But really, we’re looking for interested developers and users.

24

25 Other Gadgets Providers Tomcat + GTLAB Gadgets Grid and Web Services (TeraGrid, OSG, etc) Other Gadgets Providers Social Network Services (Orkut, LinkedIn,etc) RSS Feed, Cloud, etc Services Gadget containers aggregate content from multiple providers. Content is aggregated on the client by the user. Nearly any web application can be a simple gadget (as Iframes)

26 Tomcat + Portlets and Container Grid and Web Services (TeraGrid, OSG, etc) Grid and Web Services (TeraGrid, OSG, etc) Grid and Web Services (TeraGrid, OSG, etc) HTML/HTTP SOAP/HTTP Common science gateway architecture. Aggregation is in the portlet container. Users have limited selections of components.

27 Making GTLAB Google Gadgets A Gadget is a standalone application that is integrated into your personal iGoogle display. They can run on your Web server. You can use SSL/HTTPS Google Gadgets have two versions http: these use Google’s JavaScript APIs url: these wrap external applications with IFrames. Limitations: Not much real estate (but location, location, location) Cookies manage state on gadgets from the same server but we need a way to integrate multiple independent servers.

28 Making GTLAB Gadgets into Portlets Do all development in jsf_standalone. When you are ready to convert: cd GTLAB/transition mvn clean process-resources cd GTLAB/portlets mvn clean install You will need to manually edit portlet.xml, group.xml, and layout.xml in GTLAB/portlet/src/main/webapp/WEB-INF/ That’s it.

29 Click “Add stuff” and then “Add feed or gadget”. Type the URL of your gadget.

30 Various GTLAB applications deployed as portlets: Remote directory browsing, proxy management, and LoadLeveler queues.

31 Example Gadget Config File <ModulePrefs title="MyProxy Gadget Example" scrolling="true" height="500"/> <Content type="url" href="http://…/:8080/GTLAB/examples/MyProxyExample.jsf"> Save this as MyProxy.xml and place in a Web accessible place.

32 Under the Hood: Building Components Portlets can be built with our Apache Velocity bridge. “Template” or “steal this code” approach. OGCE portlets use the Java COG Abstraction Layer to access Grid services. Provides a buffer over different Grid toolkits and versions. Provides ability to compose graph-based workflows. Tutorial in itself We have also developed Grid Tag Libraries and Beans (GTLAB) to simplify this process.


Download ppt "OGCE Overview: Services, Gadgets, and Tags Marlon Pierce, Suresh Marru, Gregor von Laszewski, Mary Thomas, Maytal Dahan, Gopi Kandaswamy, Rion Dooley,"

Similar presentations


Ads by Google