Auto Ingest dbt-core
Learn how to automatically ingest dbt-core artifacts into OpenMetadata using the simplified metadata ingest-dbt CLI command that reads configuration directly from your dbt_project.yml file.
This feature eliminates the need for separate YAML configuration files. All configuration is done directly in your existing dbt_project.yml file.
Overview
The metadata ingest-dbt command provides a streamlined way to ingest dbt artifacts into OpenMetadata by:
- Reading configuration directly from your
dbt_project.yml file
- Automatically discovering dbt artifacts (
manifest.json, catalog.json, run_results.json)
- Supporting comprehensive filtering and configuration options
Prerequisites
- dbt project setup: You must have a dbt project with a valid
dbt_project.yml file
- dbt artifacts: Run
dbt compile or dbt run to generate required artifacts in the target/ directory
- OpenMetadata service: Your database service must already be configured in OpenMetadata
- OpenMetadata Python package: Install the OpenMetadata ingestion package
Quick Start
Add the following variables to the vars section of your dbt_project.yml file:
Environment Variables: For security, you can use environment variables instead of hardcoding sensitive values. See the Environment Variables section below for supported patterns.
2. Generate dbt artifacts
3. Run the ingestion
If you’re already in your dbt project directory:
Or if you’re in a different directory:
Environment Variables
For security and flexibility, you can use environment variables in your dbt_project.yml configuration instead of hardcoding sensitive values like JWT tokens. The system supports three different environment variable patterns:
Supported Patterns
Environment Variables Example
Then set your environment variables:
Alternative: Using .env Files
For local development, you can create a .env file in your dbt project directory:
Note: The system automatically loads environment variables from .env files in both the dbt project directory and the current working directory. Environment variables set in the shell take precedence over .env file values.
Error Handling: If a required environment variable is not set and no default is provided, the ingestion will fail with a clear error message indicating which variable is missing.
Configuration Options
Required Parameters
Optional Parameters
Filter Patterns
Control which databases, schemas, and tables to include or exclude:
Complete Example
Command Options
Note: Global options like --version, --log-level, and --debug are available at the main metadata command level:
Artifacts Discovery
The command automatically discovers artifacts from your dbt project’s target/ directory:
Generate All Artifacts
What Gets Ingested
- Model Definitions: Queries, configurations, and relationships
- Lineage: Table-to-table and column-level lineage
- Documentation: Model and column descriptions
- Data Quality: dbt test definitions and results
- Tags & Classification: Model and column tags
- Ownership: Model owners and team assignments
Error Handling & Troubleshooting
Common Issues
Debug Mode
Enable detailed logging:
Best Practices
Security
- Always use environment variables for sensitive data like JWT tokens
- Multiple patterns supported for flexibility:
- Never commit sensitive values directly to version control
Filtering
- Use specific patterns to exclude temporary/test tables
- Filter based on your organization’s naming conventions
- Exclude system schemas and databases
Automation
- Integrate into CI/CD pipelines
- Run after successful dbt builds
- Set up scheduled ingestion for regular updates
CI/CD Integration
Next Steps
After successful ingestion:
- Explore your data in the OpenMetadata UI
- Configure additional dbt features like tags, tiers, and glossary
- Set up data governance policies and workflows
- Schedule regular ingestion for keeping metadata up-to-date
For additional troubleshooting, refer to the dbt Troubleshooting Guide.