visualization middleware for e-science uk e-science core programme open call gviz project

26
1 Visualization Middleware for e- Science UK e-Science Core Programme Open Call gViz Project

Upload: kevyn-boyer

Post on 31-Dec-2015

16 views

Category:

Documents


2 download

DESCRIPTION

Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project. Visualization is key component in e-Science Increasingly so, as size of datasets and scale of simulations continues to increase gViz project aims to: - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

1

Visualization Middleware for e-Science

UK e-Science Core Programme Open Call

gViz Project

Page 2: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

2

gViz - Visualization for e-Science

• Visualization is key component in e-Science

– Increasingly so, as size of datasets and scale of simulations continues to increase

• gViz project aims to:– Grid-enable an existing visualization

system (IRIS Explorer)– Broaden out to:

• Study XML applications for visualization

• Look at computational steering in depth

• Grid-enable another visualization system, pV3

• gViz partners:– Academic: Leeds, Oxford, Oxford

Brookes, CLRC/RAL– Industrial: NAG, IBM UK and

Streamline Computing– International: Caltech, MIT

IRIS Explorer

IRIS Explorer

Grid-enable

pV3Comp

SteeringXML

Appl’n

Page 3: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

3

Starting Point: Dataflow Visualization Systems

• Visualization represented as pipeline:

– Read in data– Construct a visualization in

terms of geometry– Render geometry as image

• Realised as modular visualization environment

– IRIS Explorer is one example– Visual programming paradigm– Extensible – add your own

modules– Others include IBM Open

Visualization Data Explorer– Toolkits such as vtk have

similar underlying model

data visualize render

Page 4: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

4

Grid-enabled IRIS Explorer

• As we move to a Grid world…

– Dataflow paradigm remains entirely relevant

– … but we want to be able to distribute modules across the Grid

– … so can we simply extend NAG’s IRIS Explorer to work in this way?

Page 5: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

5

Select remote host

Automatic authentication using: •Globus certificate

•SSH Key pair

Harnessing Remote Compute Resources

Explorer on single host

Explorer on multiple hosts

Page 6: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

6

Secure Distributed IRIS Explorer

• Users can manually launch modules from remote Librarians

• IRIS Explorer maps can link specific modules to specific remote hosts

• ‘Design’ the dataflow for the Grid

Page 7: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

7

Simple Computational Steering

• Extensibility of IRIS Explorer allows user code (such as a simulation) to be included as a module in the dataflow

• Demonstrator created for an environmental crisis scenario

– Dangerous chemical escapes!– Model dispersion using system

of PDEs and solve numerically over mesh

– Visualize mesh elements where concentration exceeds threshold

– What happens when the wind changes?

– ‘faster-than-real-time’

Page 8: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

8

Computational Steering within IRIS Explorer

• Finite volume simulation code as module in IRIS Explorer

• Exploit secure distributed IRIS Explorer to run simulation remotely

• Steer and visualize on the desktop – simulate on the Grid resource

• Other IRIS Explorer features can be brought into action – such as collaborative working…. between numerical modeller and meteorologist for example

Page 9: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

9

Collaborative Visualization - Bring in the Meteorologist

Meteorologistwith windinformation(linking inremotely)

Initiatecollaborativesession

Numerical modellerstudying error details

Page 10: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

10

Moving ahead…

• This gives us Grid-enabled Collaborative Visualization and Computational Steering

• Why is this not the whole answer?

– IRIS Explorer is just one system

– It is designed primarily for visualization – not computational steering

• Broaden out from IRIS Explorer– Study XML application for

visualization, independent of any specific system

– XML for data too

– Study computational steering• Decouple the simulation

from the visualization

– Look in depth at grid-enabling another system, pV3

• First we revisit the reference model…

Page 11: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

11

Extending the Model for Grid Environments

• Visualization pipeline described independently of software or hardware resources

• For Grid environments we extend to progressively bind in resources….

• Conceptual: intent of the visualization

– Show me isosurface of constant temperature

• Logical: bind in the software system

– Use IRIS Explorer (or vtk, or whatever)

• Physical: bind in the resources to be used

– Run the isosurface extraction on particular Grid resource

data visualize render

Page 12: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

12

Developing an XML Language for Visualization: skML

• Dataflow consists fundamentally of:– a map – containing links – between ports – on modules– which have parameters

• This leads us to a simple XML application for visualization: called skML

• Here a data reader is linked to an isosurfacer

<?xml version="1.0"?><skml><map><link> <module name="ReadLat” out-port="Output"> <param name="Filename"> testVol.lat </param> </module> <module id=“iso”

name="IsosurfaceLat" in-port="Input"> <param name="Threshold" min="0" max="27"> 1.8</param> </module></link>…

Page 13: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

13

Binding in Resources

• Resources can be bound in by adding RDF annotations to describe software and hardware requirements

• Here we run ‘iso’ remotely and say that we are requiring IRIS Explorer

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

xmlns:v="http://www.gviz.org/skML/">

<rdf:Description about="iso">

<v:Type>IRISExplorer</v:Type >

<v:PhysicalLocation rdf:resource=”http://www.gviz.org/ Mars101” />

</rdf:Description>

</rdf:RDF>

Page 14: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

14

SVG Map Editor

• skML gives us an XML application for visualization

• In addition to language representation, a diagrammatic representation has been created in SVG – so we can do dataflow programming in a web browser

• A new IRIS Explorer module can read skML and generate corresponding map

• skML can also be turned into an IBM Open Visualization Data Explorer network

<?xml version="1.0"?><skml><map><link> <module name="ReadLat” out-port="Output"> <param name="Filename"> testVol.lat </param> </module> <module id=“iso”

name="IsosurfaceLat" in-port="Input"> <param name="Threshold" min="0" max="27"> 1.8</param> </module></link>…

Page 15: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

15

Taming dataset structure for visualizing over the Grid

• At present:– Multiplicity of data sources (say, m)

– Multiple visualization systems (say, n)

• Suppose a VO is being assembled where that diversity is present and may vary?

• Would like to move from Axmxn to Bxm+Cxn+D (where we would like B,C,D not to be too big)

• Investigating an approach where:– Intermediate XML-based language for data structure is used

– Structure is processed by sequence of straightforward filters

– Bulk data (e.g. resequencing) is processed as late as possible

– Existing tools used as far as possible (e.g. XSLT transformers)

– Metadata (including provenance) is not lost!

• Interested to gain access to other data sources to test approach

Page 16: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

16

Computational Steering

• Experience in building steering applications with IRIS Explorer taught us:

– Better to decouple simulation from visualization system…

– … simulation runs autonomously, scientist uses visualization system as front-end control panel to monitor and steer

– Useful to be able to distribute the visualization – move some code close to the simulation

– Scientist should be able to connect/disconnect from long-running simulations

• Led us to build the gViz steering library

– Code to link simulation and visualization

• Some design criteria:– Lack of intrusion

– Minimize performance loss

– Breadth of scope

– Exploit service-oriented concepts

– Exploit existing visualization systems

– Manage different rates of producer-consumer

– Support collaboration

Page 17: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

17

Discover/Launch

GridInformation

Gridresources

Desktop

gVizDS gVizProxyRetrieve resource

information

SimulationcodegViz-lib

Launch code onSelected resource

Simulationcode

Register

Locate

Locate any running simulations

visualize rendergetData

gViz-lib

control

gViz-lib

Pass Location

DataParameters

Parameters Data

Communications using Web Services and Proxies

Use web service tool, gVizDS, as directory service of running simulations.

Use proxy tool, gVizProxy, if no direct connection possible between simulation and visualization system

Use GIIS to locate grid resources.

Page 18: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

18

Pollution Simulation Using the gViz Library and IRIS Explorer

Page 19: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

19

gViz with other visualization systems

• Any visualization system can potentially act as the front-end control panel

– SCIRun from University of Utah

– vtk toolkit

Page 20: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

20

Where Next?

IRIS Explorer

IRIS Explorer

Grid-enable

pV3Comp

SteeringXML

Appl’n

Exploitation through future releases

from NAG

Apply within IntegrativeBiology project and

compare/contrast withRealityGrid

Mike Giles talk

Ontologies for Visualization ->

E-Viz project withBangor, Swansea and

Manchester

Open Overlays project(Fundamental CS

for e-science)Lancaster, Ox Brookes

Page 21: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

21

Acknowledgements

The gViz project team has involved many people:

• Leeds University: Ken Brodlie, Jason Wood, Chris Goodyer, Martin Thompson, Mark Walkley, Haoxiang Wang, Ying Li

• Oxford Brookes University: David Duce, Musbah Sagar• Oxford University: Mike Giles, David Gavaghan• CLRC/RAL: Julian Gallop• NAG: Steve Hague, Jeremy Walton• Streamline Computing: Mike Rudgyard • IBM UK: Brian Collins, Alan Knox, John Illingworth• CACR, Caltech: Jim Pool, Santiago de Lombeyda, John McCorquadale• MIT: Bob Haimes

Development environment at Leeds: White Rose Grid – e-Science Centre of Excellence

Page 22: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

22

Use of Web Services for Remote Distributed-Memory Visualization

Mike GilesBob Haimes

[email protected] University Computing Laboratory

Page 23: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

23

Goal of Oxford Work

Starting from existing pV3 software from MIT,• Post-processing or co-processing of data on distributed-memory

parallel systems• Support for collaborative visualization and steering• MPI used for communication with parallel system

Replace PVM message-passing to remote workstation by secure web services – much better suited for collaborative visualization

• Cleaner security model – restricted access to data, no user account required on parallel system

• Easy handling of firewalls and NAT

Page 24: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

24

Existing pV3 Architecture

Page 25: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

25

Web Service Version

Page 26: Visualization Middleware for e-Science UK e-Science Core Programme Open Call gViz Project

26

Achievements and Conclusions

• Web service implementation used C/C++ gSOAP toolkit– Very easy to use with extensive feature set:

OpenSSL, keepalive, gzip compression

• Main technical challenge was mimicking symmetric message-passing using asymmetric web service RPC

• Has been tested successfully on a PC cluster with NAT firewall, running the concentrator on the front-end node

• Performance is comparable to PVM message passing