Top Banner
STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007
21

STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Jan 06, 2018

Download

Documents

Kathleen Wilson

Context Programming complex scientific applications for gird infrastructures Challenges –Simplifying application programming –Abstraction from underlying resources –Efficient usage of resources Programming by composition Today approaches –Software component models –Workflow models u PrecipitationSorption Relargage Convection Dispersion Aqueous Reactions Gaz-liquid exchange Dissolution Biology Hydrologie
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

STCM: A spatio-temporal Component Model

Hinde Lilia BouzianeChristian Perez

PARIS Project-TeamINRIA Rennes/IRISA

Toulouse, France, December 7th 2007

Page 2: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Outline of the talk

• Context– Software component models and workflow languages

• Limitations of existing approaches for combining spatial and temporal compositions

• Objectives• A proposal for a spatio-temporal composition model• Conclusions and perspectives

Page 3: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Context

• Programming complex scientific applications for gird infrastructures

• Challenges– Simplifying application programming– Abstraction from underlying resources– Efficient usage of resources

• Programming by composition• Today approaches

– Software component models– Workflow models

u

PrecipitationSorption

Relargage

ConvectionDispersionAqueous Reactions

Gaz-liquid exchange Dissolution

Biology

Hydrologie

Page 4: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Spatial and temporal compositions

• Software component models– Description approach

• Workflow models– Programmable approach

A BC

DSpatial

composition

t1 t2

end

t3

start

temporal composition

time

y n

Page 5: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Software component models

• Ports– Method invocations, events/messages/streams

• Several component models– Common Component Architecture/CCA Forum (CCA)– CORBA Component Model/OMG (CCM)– Fractal/ObjectWeb – Service Component Architecture/OSOA group (SCA) – Etc.

Softwarecomponent

PROVIDEDPORTS

REQUIRED PORTS

(client interfaces)

Softwarecomponent

(server interfaces)

Page 6: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Workflow languages

• Ports– Input/output data

• Temporal composition– Control flow and/or data flow

• Several languages– Askalon-Abstract Grid Wrokflow Language/

Univ. Innsbruck, Austria (AGWL)– Triana/ Univ. Cardiff, UK– Grid Concurrent Language/ HLRS Stuttgart,

Germany (GriCoL)– Kepler/ SEEK, SDM, GEON, etc.– etc.

task task

task

task

task

y n

d_out

d_in

Data flow

Control flow

Page 7: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Limitations of existing approachesfor combining spatial and temporal

compositions

Page 8: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Why combining spatial and temporal dimensions

• Spatial composition– Strong coupled applications– Resources usage

• Temporal composition – No appropriate for strong coupled applications – Resources usage

Page 9: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Limitation of existing approaches

• Software component models– Adding meta-data about component’s behavior (exp: ICENI)– Objective: compute an optimal placement of components– Require code knowledge– Complicate application design

• Workflow models– Encapsulate spatial composition within tasks implementations– Objective: offer a level of composition for coupled codes– Limits the hierarchy to two levels– Limits re-usability

• Limitations because of– spatial and temporal compositions are not at the same level

Page 10: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Objectives

• Specifying a programming model allowing both temporal and spatial composition at the same level

• Expressing an application behavior by the assembly• Ability to deduce efficient resource usage directly from

the assembly• Take advantages from existing models

– No need to start from scratch

Page 11: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

A proposal for a spatio-temporalcomposition model

Page 12: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Global Approach

• Extending a software component– Input an output data ports– Task concept

• Extending a workflow language – Spatial composition to obtain an assembly language

Page 13: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Temporal port model (1/3)

Component A {

input double inA; output double outA;}

output port

input port

outA

A

inA

Page 14: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Temporal port model: internal view (2/3)

Component A {

input double inA; output double outA;}

output port

input port

outA

A_implementation

Container

inA

…void setIn_inA(double val){…}double getOut_outA(){…}

Page 15: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Temporal port model: external view (3/3)set_double(…)

outA

Container Port_inA : implements Tmp_double{void set_double (double val){…}

void connect_outA (Tmp_double p){…}

inA

interface Tmp_double { void set_double(double d); void set_void();}

connect_outA(..)

…void setIn_inA(...){…}double getOut_outA(){…}

Page 16: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Task concept

outA

Container

inA 1

impl.task()

2

4

outA.set_double()

void setIn_inA(...) { d_inA = ..} void task() {d_outA = d_inA + 10}; double getOut_outA() { return d_outA}

set_double(25)

impl.setIn_inA(25)

3

impl.getOut_outA(..)

5

Page 17: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

during configurationInput reception

connections

Component life cycle

• Component states– Created– Active– Running– Inactive– Removed/no-existent

created

inactive

active

runningno-existentremoved

task and request executions

Page 18: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Assembly model

<sequence name="name"> <dataIn name="name" type="..."

(set=..)?/>* <dataOut name="name" type="..."/>* <clientPort name="name" type="..."

(set=..)?/>* <serverPort name="name" type="..."/>* <!-- other spatial ports --> <component>+</sequence>

<if name="name"> <!-- like in sequence--> <component>* <condition> condition </condition> <then> <component>+ </then> <else> <component>+ </else>?</if>

Sequence Condition

Page 19: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Example<assembly name ="example"> ... <parallel name="ParallelCtrl"> <section> <component name="B"> <dataIn name="inB" ... set="init.out1"/> <serverPort name="pB" type=“Foo"/> </component> </section> <section> <component name="A"> <dataIn name="inA" ... set="init.out2"/> <clientPort name="pA" type=“Foo" set="B.pB"/> </component> </section> </parallel> ... </assembly>

Page 20: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Conclusions and perspectives• Combination of spatial and temporal composition

in a same programming model • Extension of component model (GCM/CoreGRID)

– Temporal port and task concepts• Extension of workflow language (AGWL)

– Spatial ports and composition

• Perspectives– Feasibility through an implementation

• Rely on a workflow engine/ dynamic deployment– Formal semantic for validation

Page 21: STCM: A spatio-temporal Component Model Hinde Lilia Bouziane Christian Perez PARIS Project-Team INRIA Rennes/IRISA Toulouse, France, December 7 th 2007.

Questions ?