connectors

No menu items for this category

Usage Workflow Through Query Logs

In order to extract usage information, OpenMetadata parses the queries that have run against the database. This query log information is available from WITHIN the database in the following services:

If you are using any other database connector, direct execution of Usage Workflow is not possible. This is mainly because these database connectors does not maintain query execution logs which is required for Usage Workflow.

If you are interested in running the usage workflow for a connector not listed above, this documentation will help you to execute the Usage Workflow using a query log file. This can be arbitrarily executed for any database connector.

A query log file is a standard CSV file which contains the following information.

A standard CSV should be comma separated, and each row represented as a single line in the file.

  • query_text: This field contains the literal query that has been executed in the database. It is quite possible that your query has commas , inside. Then, wrap each query in quotes to not have any clashes with the comma as a separator.
  • user_name (optional): Enter the database user name which has executed this query.
  • start_time (optional): Enter the query execution start time in YYYY-MM-DD HH:MM:SS format.
  • end_time (optional): Enter the query execution end time in YYYY-MM-DD HH:MM:SS format.
  • aborted (optional): This field accepts values as true or false and indicates whether the query was aborted during execution
  • database_name (optional): Enter the database name on which the query was executed.
  • schema_name (optional): Enter the schema name to which the query is associated.

Checkout a sample query log file here.

In order to run a Usage Workflow we need to make sure that Metadata Ingestion Workflow for corresponding service has already been executed. We will follow the steps to create a JSON configuration able to collect the query log file and execute the usage workflow.

Create a new file called query_log_usage.yaml in the current directory. Note that the current directory should be the openmetadata directory. Copy and paste the configuration template below into the query_log_usage.yaml the file you created.

The serviceName should be a service already ingested in OpenMetadata.

  • queryLogFilePath: Enter the file path of query log csv file.

First, we will need to save the YAML file. Afterward, and with all requirements installed, we can run:

Note that from connector-to-connector, this recipe will always be the same. By updating the YAML configuration, you will be able to extract metadata from different sources.