- Set up a provenance store (database) suitable for the HyperFlow provenance model
- Implement "flushing" provenance events logged during workflow execution to this store
- The store needs to support common provenance queries (such as lineage graph of a data/signal)
- Probably it should be a more general store for "workflow execution history" which supports not only provenance queries but also others
Provenance logging is implemented in engine2/process.js
By default it is disabled by the flag set in engine2/index.js:
this.logProvenance = false;
Provenance logging is implemented in
engine2/process.jsBy default it is disabled by the flag set in
engine2/index.js:this.logProvenance = false;