GitBook: [#71] DBT Doc page removed

This commit is contained in:
Ayush Shah 2022-01-06 04:36:28 +00:00 committed by Sriharsha Chintalapani
parent 7f3f19ca27
commit 8e417266f2
4 changed files with 1 additions and 96 deletions

View File

@ -19,7 +19,7 @@ OpenMetadata provides connectors that enable you to perform metadata ingestion f
| [Athena](openmetadata/connectors/athena.md) | [MLflow](connectors/mlflow.md) | [Redshift](openmetadata/connectors/redshift.md) | [Tableau](openmetadata/connectors/tableau.md) |
| [BigQuery](openmetadata/connectors/bigquery.md) | [MSSQL](openmetadata/connectors/mssql.md) | [Redshift Usage](openmetadata/connectors/redshift-usage.md) | [Trino](openmetadata/connectors/trino.md) |
| [BigQuery Usage](openmetadata/connectors/bigquery-usage.md) | [MySQL](openmetadata/connectors/mysql.md) | | [Vertica](openmetadata/connectors/vertica.md) |
| [DBT](connectors/dbt.md) | | | |
| [DBT](broken-reference) | | | |
| [Elasticsearch](openmetadata/connectors/elastic-search.md) | | | |
| [Glue Catalog](connectors/glue-catalog.md) | | | |
| [Hive](openmetadata/connectors/hive.md) | | | |

View File

@ -10,7 +10,6 @@
* [Athena](openmetadata/connectors/athena.md)
* [BigQuery](openmetadata/connectors/bigquery.md)
* [BigQuery Usage](openmetadata/connectors/bigquery-usage.md)
* [DBT](connectors/dbt.md)
* [Elasticsearch](openmetadata/connectors/elastic-search.md)
* [Glue Catalog](connectors/glue-catalog.md)
* [Hive](openmetadata/connectors/hive.md)

View File

@ -1,90 +0,0 @@
---
description: This guide will help you install the DBT connector and run manually.
---
# DBT
{% hint style="info" %}
**Prerequisites**
OpenMetadata is built using Java, DropWizard, Jetty, and MySQL.
1. Python 3.7 or above
{% endhint %}
### Install from PyPI
{% tabs %}
{% tab title="Install Using PyPI" %}
```bash
pip install 'openmetadata-ingestion[dbt]'
```
{% endtab %}
{% endtabs %}
### Run Manually
```bash
metadata ingest -c ./examples/workflows/dbt.json
```
### Configuration
{% code title="dbt.json" %}
```javascript
{
"source": {
"type": "dbt",
"config": {
"service_name": "bigquery",
"service_type": "BigQuery",
"catalog_file": "./examples/sample_data/dbt/catalog.json",
"manifest_file": "./examples/sample_data/dbt/manifest.json",
"run_results_file": "./examples/sample_data/dbt/run_results.json",
"database": "shopify"
}
}
...
```
{% endcode %}
1. **service\_name** - Service Name for this MySQL cluster. If you added MySQL cluster through OpenMetadata UI, make sure the service name matches the same.
2. **catalog\_file** - It contains includes, excludes options to choose which pattern of datasets you want to ingest into OpenMetadata
3. **manifest\_file** - Enable data-profiling (Optional). It will provide you the newly ingested data.
4. **run\_results\_file** - Specify offset.
5. **database** - Specify limit.
## Publish to OpenMetadata
Below is the configuration to publish DBT data into the OpenMetadata service.
Add optionally `pii` processor and `metadata-rest` sink along with `metadata-server` config
{% code title="dbt.json" %}
```javascript
{
"source": {
"type": "dbt",
"config": {
"service_name": "bigquery",
"service_type": "BigQuery",
"catalog_file": "./examples/sample_data/dbt/catalog.json",
"manifest_file": "./examples/sample_data/dbt/manifest.json",
"run_results_file": "./examples/sample_data/dbt/run_results.json",
"database": "shopify"
}
},
"sink": {
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "no-auth"
}
}
}
```
{% endcode %}

View File

@ -24,10 +24,6 @@ OpenMetadata supports connectors to some popular services. We will continue as a
* [Trino](../../../openmetadata/connectors/trino.md)
* [Vertica](../../../openmetadata/connectors/vertica.md)
**Data Model**
* [DBT](../../../connectors/dbt.md)
#### Dashboard Services
* [Looker](../../../openmetadata/connectors/looker.md)