Class OpenLineageEventReceiverIntegrationConnector

All Implemented Interfaces:
AuditLoggingComponent, SecureConnectorExtension, VirtualConnectorExtension, CatalogTargetIntegrator, IntegrationConnector, LineageIntegratorOMISConnector, OpenMetadataTopicListener

public class OpenLineageEventReceiverIntegrationConnector extends LineageIntegratorConnector implements OpenMetadataTopicListener, CatalogTargetIntegrator
OpenLineageEventReceiverIntegrationConnector receives open lineage events from an event broker such as an Apache Kafka topic. It publishes them to other listening lineage integration connectors.
  • Constructor Details

    • OpenLineageEventReceiverIntegrationConnector

      public OpenLineageEventReceiverIntegrationConnector()
      Default constructor
  • Method Details

    • processEvent

      public void processEvent(String event)
      Method to pass an event received on topic to the Lineage Integrator OMIS to be published to listening integration connectors.
      Specified by:
      processEvent in interface OpenMetadataTopicListener
      Parameters:
      event - inbound event
    • refresh

      public void refresh() throws ConnectorCheckedException
      Requests that the connector does a comparison of the metadata in the third party technology and open metadata repositories. Refresh is called when the integration connector first starts and then at intervals defined in the connector's configuration as well as any external REST API calls to explicitly refresh the connector.
      Specified by:
      refresh in interface IntegrationConnector
      Throws:
      ConnectorCheckedException - there is a problem with the connector. It is not able to refresh the metadata.
    • integrateCatalogTarget

      public void integrateCatalogTarget(RequestedCatalogTarget requestedCatalogTarget) throws ConnectorCheckedException
      Perform the required integration logic for the assigned catalog target.
      Specified by:
      integrateCatalogTarget in interface CatalogTargetIntegrator
      Parameters:
      requestedCatalogTarget - the catalog target
      Throws:
      ConnectorCheckedException - there is an unrecoverable error and the connector should stop processing.
    • getNewRequestedCatalogTargetSkeleton

      public RequestedCatalogTarget getNewRequestedCatalogTargetSkeleton(CatalogTarget retrievedCatalogTarget, Connector connectorToTarget)
      Create a new catalog target processor (typically inherits from CatalogTargetProcessorBase).
      Specified by:
      getNewRequestedCatalogTargetSkeleton in interface CatalogTargetIntegrator
      Parameters:
      retrievedCatalogTarget - details of the open metadata elements describing the catalog target
      connectorToTarget - connector to access the target resource
      Returns:
      new processor based on the catalog target information