Available adapters
dbt connects to and runs SQL against your database, warehouse, platform, or query engine. It works by using a dedicated adapter for each technology. All the adapters listed below are open source and free to use, just like dbt.
Fishtown Supported
In addition to maintaining dbt-core
, Fishtown Analytics maintains a set of adapters for some of the most common databases, warehouses, and platforms. (โ
indicates "full support.")
Adapter for | Documentation | Core features | dbt Cloud | Distribution |
---|---|---|---|---|
Postgres | Profile Setup | โ | โ | core |
Redshift | Profile Setup, Configuration | โ | โ | core |
BigQuery | Profile Setup, Configuration | โ | โ | core |
Snowflake | Profile Setup, Configuration | โ | โ | core |
Apache Spark | Profile Setup, Configuration | nearly full support | preview | plugin |
Databricks | Profile Setup, Configuration | nearly full support | preview | plugin |
Presto | Profile Setup | partial support | plugin |
Adapters distributed with "core" are ready to use when you install dbt. For "plugin" adapters, check each page for specific installation instructions.
Vendor Supported
These adapter plugins are built and maintained by the same people who build and maintain the complementary data technology.
Adapter for | Documentation |
---|---|
Materialize (dbt-materialize) | Profile Setup |
Community Supported
These adapter plugins are contributed and maintained by members of the community ๐ฑ
Adapter for | Documentation | Notes |
---|---|---|
Microsoft SQL Server (dbt-mssql) | Profile Setup | SQL Server 2008 R2 and later |
Microsoft SQL Server (dbt-sqlserver) | Profile Setup | SQL Server 2016 and later |
Microsoft Azure Synapse DW (dbt-synapse) | Profile Setup | Azure Synapse 10+ |
Microsoft Azure Synapse DW (dbt-azuresynapse) | Profile Setup | Azure Synapse 10+ |
Exasol Analytics (dbt-exasol) | Profile Setup | Exasol 6.x and later |
Oracle Database (dbt-oracle) | Profile Setup | Oracle 11+ |
Dremio (dbt-dremio) | Profile Setup | Dremio 4.7+ |
ClickHouse (dbt-clickhouse) | Profile Setup | ClickHouse 20.11+ |
Community-supported plugins are works in progress, and all users are encouraged to contribute by testing and writing code. If you're interested in contributing:
- Join the dedicated channel in dbt Slack (e.g. #db-sqlserver, #db-athena)
- Check out the open issues in the plugin's source repository
Note that, while no community plugins are currently supported in dbt Cloud, we expect this to change in 2021.
Creating a new adapter
dbt can be extended to any SQL-speaking database, warehouse, data lake, query engine, or analytical platform by means of an adapter plugin. These plugins can be built as separate Python modules, and dbt will discover them if they are installed on your system. If you see something missing from the lists above, and you're interested in developing an integration, read more about building a new adapter.