cloudkeeper modularity
play

CloudKeeper Modularity Architecture Select Component Details - PowerPoint PPT Presentation

CloudKeeper Modularity Architecture Select Component Details Component Diagram Interpreter API DSL interpret executable data workflow representation domain-specific language for structures, send atomic units (object model) and component


  1. CloudKeeper Modularity Architecture Select Component Details

  2. Component Diagram Interpreter API DSL interpret executable data workflow representation domain-specific language for structures, send atomic units (object model) and component defining workflows to simple-module executor interfaces Marshaling Linker transform AST into executable tree-representation of objects data structures suitable for transmission Runtime-Context Simple-Module Provider Executor Staging Area locate and load data-flow runs simple modules with hold marshaled in-/output and code, link inputs from staging area intermediate results DSL class Maven- in- file S3 local forked DRMAA walker based memory

  3. Workflow-Execution Use Cases Execution Source Artifact Environment Repository Repository Development Debugging single JVM not checked not checked in on laptop in Smoke Tests multiple JVMs 〃 not checked in on laptop or snapshot Realistic cluster 〃 snapshot Tests Production Real Data 〃 checked in release

  4. Maven-based Runtime-Context Provider CloudKeeper Bundle Logically: shared library • Physically: Maven artifact • Aether generated by plugin Dependency resolution during runtime • Dynamic class-loader creation • <? xml version="1.0" encoding="UTF-8" standalone="yes" ?> � < bundle xmlns="http://www.svbio.com/cloudkeeper/1.0.0" > � < cloudkeeper-version >2.0.0.0-SNAPSHOT</ cloudkeeper-version > � < creation-time >2015-09-04T12:29:50.276-07:00</ creation-time > � < packages > � < package > � < qualified-name >com.svbio.cloudkeeper.samples.maven</ qualified-name > � < declarations > � < simple-module-declaration > � < simple-name >AvgLineLengthModule</ simple-name > � < annotations /> � < ports > � < in-port > � < name >text</ name > � < annotations /> � < declared-type ref="java.lang.String" /> � </ in-port > �

  5. � � Implementing a CloudKeeper Service Simple API for Controlling Workflow Executions MutableModule<?> module = new MutableProxyModule() � .setDeclaration( "com.svbio.test.PiModule" ); � WorkflowExecution workflowExecution = cloudKeeperEnvironment � . newWorkflowExecutionBuilder (module) � . setInputs (Collections. singletonMap ( � SimpleName. identifier ( "precision" ), precision) � ) � . setBundleIdentifiers (Collections. singletonList (Bundles. bundleIdentifierFromMaven ( � "com.svbio.ckmodules" , � "ckmodules-test" , � Version. valueOf ( "1.1.0.12-SNAPSHOT" ) � ))) � . start (); � String result = (String) WorkflowExecutions � . getOutputValue (workflowExecution, "digits" , 1, TimeUnit. MINUTES ) �

  6. The CloudKeeper Data-Flow Programming Language Fundamental Tasks: Compile, Link, Report Errors Type System

  7. Basic Concepts Compiled Language Every workflow linked against repository of definitions • - eager linking Static typing • Rationale: fail early • «abstract» Definition «abstract» Annotation Type Type Marshaler Module Definition Definition Definition Definition Composite Simple Module Module Definition Definition

  8. CloudKeeper Object Model: Classes «abstract» Plug-in Definition «abstract» Port «abstract» Annotation Type Type Marshaler Module Definition Definition Definition In-Port Out-Port Definition I/O-Port Composite Simple Annotation Module Module Definition Definition «abstract» Annotation Module Element «abstract» «abstract» Type Proxy Input Parent Port Type Parameter Module Module Module Mirror … Loop Composite Declared Port Type Wildcard Module Module Port Type Variable Port Type

  9. CloudKeeper Object Model: Packages Defined Using Interfaces Model Primitives Single implementation not enough • (ExecutionTrace, for language models Name, etc.) - Instantiating may be non-trivial «import» - cf. javax.lang.model Different implementations for • Bare Model different needs (BarePort, BareTypeDeclaration, etc.) - for JAXB: plain-old Java objects - for Interpreter: Immutable, linked «import» «import» «import» Runtime Model DSL POJOs (RuntimePort, (InPort, (MutablePort, RuntimeTypeDeclaration, etc.) SimpleModule, etc.) MutableTypeDeclaration, etc.)

  10. � � CloudKeeper API for Defining Workflows CloudKeeper POJO Classes public abstract static class CompositeWithInput � Mutable representation of (bare) AST • extends CompositeModule<CompositeWithInput> { � public abstract InPort<Collection<Integer>> number(); � public abstract OutPort<Integer> list(); � Allow programmatic definition of • InputModule<Integer> one = value(42); � CloudKeeper modules { list ().from( one ); } � } � new MutableCompositeModule() � .setDeclarationName(CompositeWithInput. class .getName()) � .setDeclaredPorts(Arrays. asList ( � new MutableInPort() � .setName( "number" ) � .setType( � new MutableParameterizedPortType() � .setRawTypeName(Collection. class .getName()) � .setActualTypeArguments(Arrays. asList ( � new MutableLinkedTypeDeclaration() � .setName(Integer. class .getName()) � )) � ), � new MutableOutPort() � .setName( "list" ) � .setType( � new MutableTypeDeclarationReference() � .setName(Integer. class .getName() � ) � )) � // ... �

  11. XML Bindings for CloudKeeper Object Model JAXB Annotations On Java Bean-style implementation of domain interfaces • JAXB part of Java SE • XML Schema Exists Reliable external interface – e.g., for XPath queries • Immediate integration with IDEs •

  12. CloudKeeper Is a Programming Language! Source Code Java, Scala, etc. CloudKeeper DSL, XML Tokenization JLS 8, §3 Lexical Structure [0-9]+ � return_stmt Parse JLS 8, §19 Syntax ‘return’ expr ‘;’ Tree mult_exp Tree representation of Process instances from add_exp deriving start symbol host language … Abstract return Syntax syntactic representation add_op Tree of source code id: a const: int 2 Executable byte code (.class/.jar) verified AST (.xml/.ckbundle)

  13. Dynamic Linking: Java vs. CloudKeeper AST in memory Executable byte code (alternatively, .xml file) (e.g., .class file) on-demand when resolving up front by package Load Executables symbolic references, manager no package management by class loader search “repository” Resolve Symbolic (e.g., scan class path), consisting of “bundles” References resort to parent class loader, that contain definitions may trigger Load Executables thrown when class used immediately – fail early Resolution Errors correctness checks Verification and Initialization static initializer blocks, etc. preprocessing

  14. � The Java Type System Convenient, But not Ideal No covariant type parameters • List<Number> :> ArrayList<Integer> � ArrayList<Integer> arrayList = new ArrayList<>(); � List<Number> list = arrayList; // Not legal, but suppose it was � list.add(3.0); � Java solution: wildcards and type bounds • ArrayList<Integer> arrayList = new ArrayList<>(); � List<? extends Number> list = arrayList; // Now legal � list.add(3.0); // This is now illegal � CloudKeeper port types are immutable – problem would not arise! • - Wildcards create unnecessary visual clutter

  15. � � � Error Reporting DSL Debug Information is Preserved Keeps record of Java source file and line number • Linking failures produce “linking backtrace” • - Logical public abstract class MissingMergeModule � containment extends CompositeModule<MissingMergeModule> { � public abstract InPort<Collection<Integer>> inArrayPort(); � chain public abstract OutPort<Integer> outPort(); � Sum sum = child(Sum. class ). � firstPort ().from( forEach ( inArrayPort ())). � secondPort ().from(value(1)); � { outPort ().from( sum . outPort ()); } � } � com.svbio.cloudkeeper.linker.ConstraintException: Connection from out-port outPort in composite module sum to out-port outPort in composite module null is not a combine-into-array connection. Outgoing connections from out-ports of an apply-to-all module must be combine-into-array connections. � Linking backtrace: � connection sum#outPort -> null#outPort; MissingMergeModule.<init>(MissingMergeModule.java:19) � composite module null; NoMergeTest.missingMergeTest(NoMergeConnectionTest.java:29) �

  16. The CloudKeeper Interpreter Scalability Computing a Consistent Resume State

  17. High-Level Components Involved in Starting Executions :Workflow runtime «actor» «actor» Execution context adminis- master Builder provider trator interpreter :Workflow start «create» Execution create runtime state :Staging Area «create» write inputs create execution ID «create» results: Promise[] manage { ≤ 5s } start interpreting «actor» top-level «create» get output interpreter «future» output ref output Interpret output workflow «completed» output

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend