Difference between revisions of "Provenance challenge"

From VistrailsWiki
Jump to navigation Jump to search
Line 61: Line 61:
There are currently three ways to implement the transitive closure:
There are currently three ways to implement the transitive closure:


<UL>
<OL>
<LI>Natively in the Query processor (not implemented yet)  
<LI>Natively in the Query processor (not implemented yet)  
<LI>As an extra gtraph structure as described below
<LI>As an extra graph structure as described below
<LI>An implementation in python using basic relation queries on the source. (Very slow)
<LI>An implementation in python using basic relation queries on the source. (Very slow)
</UL>
</UO>


For small data stores  
For small data stores any implementation is possible.
For large data stores (2) might not be possible. If (1) is not possible in the query engine, your only choice is (3), which might be very slow.
An assumption would be that an implementation of a provenance store would probably support (1). Or implement its own version of (2).


For query processors not capable of transitive closure (like the ones above), we have implemented a Graph structure. It is initialized during the initialization of the data store with the transitive relations in that store. All upstream/downstram queries will then be directed to that Graph structure for fast computation.
For query processors not capable of transitive closure (like the ones above), we have implemented a Graph structure. It is initialized during the initialization of the data store with the transitive relations in that store. All upstream/downstram queries will then be directed to that Graph structure for fast computation.

Revision as of 10:16, 13 April 2007

Second provenance challenge design overview

This page describes the implementation of how to answer the queries of the second provenance challenge.

The goal of this project is to create an api capable of querying different kinds of databases containing provenance data. The main focus will be on provenance generated by scientific workflows.

data model overview

This is a description of the data model that i am trying to implement.

Module definition is a description of a processor that takes inputs and generates outputs.

Workflow definition is a description of a workflow that contains modules and connections between them through ports. In the case of VisTrails, it also contains the evolution of the workflow through a parent relation.

Execution log is the information about a workflow execution. It contains information about the processors that were executed and the data items that were created.

Pc model er.gif


primitives

The api will deal with the basic primitives describing workflow executions.


node types:

namedescription
dataitema dataitem that is input/output to a module execution
modulethe module/service that is to be executed
moduleInstancethe module as represented in a workflow
moduleExecutionthe execution of a module
workflowa description of a process containing modules and connections
workflowExecutionthe representation of a workflow execution
inputPortrepresents a specific port thas can be assigned an input to a module execution
outputPortrepresents a specific port thas can contain a product of a module execution
connectionrepresents a connection between module Instances

Relations

The basic relations between the primitives is shown in the diagram above. However few of the current provenance systems contains all of this information. Some may lack information about produced data items or miss the definition of a workflow. The goal must thus be to extract as much information as possible from each source.

The most common use of provenance data will be to perform the transitive closure of some connected executions or data items i.e. to track data dependencies back and forward in time. We call this upstream for tracking back in time and downstream for tracking forward in time.

We have identified 4 primitives to which upstream/downstream tracking is relevant:

primitivedescription
dataitemtracking data dependencies
moduleExecutiontracking execution dependencies
moduleInstancestracking module dependencies within a workflow
workflowtracking workflow design history e.g. different workflow versions in the VisTrails action tree

In addition, for the information contained in each primitive, we suggest using an annotation relation for extracting the information. It should be possible to add custom annotations to all primitives. Widely used information like execution start and end-time might be implemented as separate functions.

Implementation

The implementation is done in python. Currently the API has been partially implemented for XML using XPath and RDF using SPARQL.

There are currently three ways to implement the transitive closure:

  1. Natively in the Query processor (not implemented yet)
  2. As an extra graph structure as described below
  3. An implementation in python using basic relation queries on the source. (Very slow) </UO> For small data stores any implementation is possible. For large data stores (2) might not be possible. If (1) is not possible in the query engine, your only choice is (3), which might be very slow. An assumption would be that an implementation of a provenance store would probably support (1). Or implement its own version of (2). For query processors not capable of transitive closure (like the ones above), we have implemented a Graph structure. It is initialized during the initialization of the data store with the transitive relations in that store. All upstream/downstram queries will then be directed to that Graph structure for fast computation. --Tommy 03:40, 13 April 2007 (MDT)--