Metadata-Version: 2.1
Name: marquez-dbt-bigquery
Version: 0.16.1
Summary: The Marquez BigQuery adapter plugin for dbt (data build tool)
Home-page: UNKNOWN
Author: Marquez Project
License: UNKNOWN
Keywords: marquez
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: dev

# dbt-bigquery-openlineage

Plugin for [dbt](https://github.com/fishtown-analytics/dbt) (data build tool) for automatic metadata and lineage collection.

This integration is experimental, and there is high possibility that it will change in the future, 
as together with dbt developers we're figuring what's the best way to extract metadata from it.

## Requirements

```
Python 3.6+
sqlparse>=0.3.1
```

## Installation

```
$ pip install marquez-dbt-bigquery
```

## Configuration

You need to configure dbt's [profiles.yaml](https://docs.getdbt.com/dbt-cli/configure-your-profile) file.
This plugin introduces additional type: openlineage_bigquery.

It handles the same configuration flags as original bigquery plugin, with the addition of OpenLineage related ones:

```bash
    openlineage_url - sets URL of OpenLineage server where events will be pushed
    openlineage_timeout - optional - sets timeout for connecting to OpenLineage server. By default it's set to 5 seconds.
    openlineage_api_key - optional - sets api key for OpenLineage server
```


