Origin Seeker Governance Action Service¶
Connector summary
- Connector Category: Governance Action Service
- Hosting Service: Governance Action OMES
- Hosting Server: Engine Host
- Source Module: governance-action-connectors
- Jar File Name:
governance-action-connectors.jar
- ConnectorProviderClassName:
org.odpi.openmetadata.adapters.connectors.governanceactions.remediation.OriginSeekerGovernanceActionProvider
An asset may have an origin classification attached that documents various properties about its origin. The Origin Seeker Governance Action Service sets up the origin classification on an asset by navigating backwards through the lineage relationships to locate origin classifications attached to the assets in the lineage graph.
Figure 1: Operation of the Origin Seeker governance action service
Origin Seeker is only able to assign an origin to the asset if at least on of the assets in its lineage has an origin classification, and where there are multiple assets. If one (and only one) is found, it is assigned to the action target asset.
Figure 2 shows a simple example of origin seeker finding an origin in a no-branching lineage graph.
Figure 2: Origin assigned because one origin classification found
Figure 3 shows the origin coming from multiple branches of the lineage graph, but they are all the same, so the same values can be assigned.
Figure 3: Origin assigned because consistent origin classifications found
Figure 4 shows a case where origin seeker fails because the asset's lineage shows it to have been derived from multiple origins.
Figure 4: Origin not assigned because inconsistent origin classifications found
Finally the origin is not assigned because there are no origin classifications in the lineage graph.
Figure 5: Origin not assigned because no origin classifications found
Configuration¶
This is Origin Seeker's connection definition to use when creating the definition of the governance action service using the Open Governance Services. Note that is does not use configuration properties.
{
"connection" : {
"class" : "Connection",
"connectorType" :
{
"class" : "ConnectorType",
"connectorProviderClassName" : "org.odpi.openmetadata.adapters.connectors.governanceactions.remediation.OriginSeekerGovernanceActionProvider"
}
}
}
Governance Action Settings¶
When this governance action service is called through an engine action it supports the following options.
Request Types and Parameters¶
Origin seeker does not specifically recognize any request types or request parameters.
Action Targets¶
The asset that needs an origin classification is linked to the governance action as an action target. The unique identifier (guid) can be passed as a parameter when the governance action or governance action process is initiated.
Completion Status and Guards¶
These are the responses that origin seeker produces:
CompletionStatus.ACTIONED
with guardorigin-assigned
if a single origin is detected in all branches of the lineage graph.CompletionStatus.ACTIONED
with guardorigin-already-assigned
if the asset already has an origin set up.CompletionStatus.INVALID
with guardmultiple-origins-detected
if multiple, different origins are detected in the lineage graph.CompletionStatus.INVALID
with guardno-origins-detected
if no origin classifications are found in the lineage graph.CompletionStatus.INVALID
with guardno-targets-detected
if there is no asset set up as an action target.CompletionStatus.INVALID
with guardmultiple-targets-detected
if there are multiple assets set up as action targets.CompletionStatus.FAILED
with guardorigin-seeking-failed
for an unrecoverable error such as a not authorized response from the metadata repository.
Examples of use¶
The Open Metadata Labs: this connector is configured in the governDL01
engine host server as part of the automated curation asset management lab.
Related Information¶
- See the Asset Lineage section in Asset Catalog Contents.
- Designing a Remediation Governance Action Service.
Suggested Enhancements¶
This governance action service could be enhanced as follows:
-
Support a default origin through the configuration properties/request parameters to use if no origin is found in the lineage graph.
-
Provide logic to blend the origin properties when multiple origins are detected. This type of change would need knowledge of the origin properties used in the installation to know which are valid to combine.
License: CC BY 4.0, Copyright Contributors to the ODPi Egeria project.