The TiDB adapter plugin for dbt
Project description
dbt-tidb
The dbt-tidb
package contains all of the code enabling dbt to work with
TiDB.
This repository is partly based on dbt-mysql. Thanks to them for their excellent work.
Table of Contents
- Installation
- Supported features
- Supported functions
- Profile Configuration
- Database User Privileges
- Running Tests
- Example
- Contributing
Installation
Compile by source code.
$ git clone https://github.com/pingcap/dbt-tidb.git
$ cd dbt-tidb
$ pip install .
Also, you can get it from pypi.
$ pip install dbt-tidb
Supported features
TiDB 4.X | TiDB 5.0 ~ 5.2 | TiDB >= 5.3 | Feature |
---|---|---|---|
✅ | ✅ | ✅ | Table materialization |
✅ | ✅ | ✅ | View materialization |
❌ | ❌ | ✅ | Incremental materialization |
❌ | ✅ | ✅ | Ephemeral materialization |
✅ | ✅ | ✅ | Seeds |
✅ | ✅ | ✅ | Sources |
✅ | ✅ | ✅ | Custom data tests |
✅ | ✅ | ✅ | Docs generate |
❌ | ❌ | ✅ | Snapshots |
✅ | ✅ | ✅ | Connection retry |
✅ | ✅ | ✅ | Grant |
Note:
- TiDB 4.0 ~ 5.0 does not support CTE,
you should avoid using
WITH
in your SQL code. - TiDB 4.0 ~ 5.2 does not support creating a temporary table or view.
- TiDB 4.X does not support using SQL func in
CREATE VIEW
, avoid it in your SQL code. You can find more detail here.
Supported functions
cross-db macros are moved from dbt-utils into dbt-core, so you can use the following functions directly, see dbt-util on how to use them.
- bool_or
- cast_bool_to_text
- dateadd
- datediff
- date_trunc
- hash
- safe_cast
- split_part
- last_day
- cast_bool_to_text
- concat
- escape_single_quotes
- except
- intersect
- length
- position
- replace
- right
- listagg (not support yet)
pay attention that datediff is a little different from dbt-util that it will round down rather than round up.
Profile Configuration
TiDB targets should be set up using the following configuration in your profiles.yml
file.
Example entry for profiles.yml:
your_profile_name:
target: dev
outputs:
dev:
type: tidb
server: 127.0.0.1
port: 4000
schema: database_name
username: tidb_username
password: tidb_password
retries: 2
Option | Description | Required? | Example |
---|---|---|---|
type | The specific adapter to use | Required | tidb |
server | The server (hostname) to connect to | Required | yourorg.tidb.com |
port | The port to use | Required | 4000 |
schema | Specify the schema (database) to build models into | Required | analytics |
username | The username to use to connect to the server | Required | dbt_admin |
password | The password to use for authenticating to the server | Required | correct-horse-battery-staple |
retries | The retry times for connection to TiDB (1 in default) | Optional | 2 |
Database User Privileges
Your database user would be able to have some abilities to read or write, such as SELECT
, CREATE
, and so on.
You can find some help here with TiDB privileges management.
Required Privilege |
---|
SELECT |
CREATE |
CREATE TEMPORARY TABLE |
CREATE VIEW |
INSERT |
DROP |
SHOW DATABASE |
SHOW VIEW |
SUPER |
Running Tests
See tests/README.md for details on running the integration tests.
Example
Click here to see a simple example about using dbt with dbt-tidb.
Contributing
Welcome to contribute for dbt-tidb. See Contributing Guide for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dbt-tidb-1.2.0.tar.gz
.
File metadata
- Download URL: dbt-tidb-1.2.0.tar.gz
- Upload date:
- Size: 22.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c68891adcea133360ed6b46cc639804894b1f007696e4349f81d7c3568ed14 |
|
MD5 | de5456c7d1990dfa39e63b894f71f2bf |
|
BLAKE2b-256 | 87e17ace7b4053ca70ced5ab2556f836746b23a28b2d16eb9a9b4c1e3d59d3ac |
File details
Details for the file dbt_tidb-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: dbt_tidb-1.2.0-py3-none-any.whl
- Upload date:
- Size: 26.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d610ce7537d5a140637ed80f8804c1e39c0fb43fb736bba1019ec8ac4a204fa |
|
MD5 | dc637745f7c39579912c68d6fbc52ff0 |
|
BLAKE2b-256 | 38fb7a6da30fce9332287e2ff9460fc59d2b0396b5d4172c2595926acd5cc6f4 |