Skip to main content

DBT adapter for YDB

Project description

dbt logo

dbt-ydb

dbt-ydb is a plugin for dbt that provides support for working with YDB. dbt-ydb adapter is in preview stage and does not currently support all dbt features. The sections below list the supported features and known limitations.

Installation

To install plugin, execute the following command:

pip install dbt-ydb

Supported features

  • Table materialization
  • View materialization
  • Seeds
  • Docs generate
  • Tests
  • Incremental materializations (merge strategy only)
  • Snapshots

Limitations

  • YDB does not support CTE
  • YDB requires a primary key to be specified for its tables. See the configuration section for instructions on how to set it.
  • source() macro requires you to specify a schema. Use / if your source is in root folder.

Usage

Profile Configuration

To configure YDB connection, fill profile.yml file as below:

profile_name:
  target: dev
  outputs:
    dev:
      type: ydb
      host: [localhost] # YDB host
      port: [2136] # YDB port
      database: [/local] # YDB database
      schema: [<empty string>] # Optional subfolder for DBT models
      secure: [False] # If enabled, grpcs protocol will be used
      root_certificates_path: [<empty string>] # Optional path to root certificates file

      # Static Credentials
      username: [<empty string>]
      password: [<empty string>]

      # Access Token Credentials
      token: [<empty string>]

      # Service Account Credentials
      service_account_credentials_file: [<empty string>]

Model Configuration

View

Option Description Required Default

Table

Option Description Required Default
primary_key Primary key expression to use during table creation yes
store_type Type of table. Available options are row and column no row
auto_partitioning_by_size Enable automatic partitioning by size. Available options are ENABLED and DISABLED no
auto_partitioning_partition_size_mb Partition size in megabytes for automatic partitioning no
ttl Time-to-live (TTL) expression for automatic data expiration no

Incremental

Option Description Required Default
incremental_strategy Strategy of incremental materialization. Current adapter supports only merge strategy, which will use YDB's UPSERT operation. no default
primary_key Primary key expression to use during table creation yes
store_type Type of table. Available options are row and column no row
auto_partitioning_by_size Enable automatic partitioning by size. Available options are ENABLED and DISABLED no
auto_partitioning_partition_size_mb Partition size in megabytes for automatic partitioning no
ttl Time-to-live (TTL) expression for automatic data expiration no
Example table configuration
{{ config(
    primary_key='id, created_at',
    store_type='column',
    auto_partitioning_by_size='ENABLED',
    auto_partitioning_partition_size_mb=256,
    ttl='Interval("P30D") on created_at'
) }}

select
    id,
    name,
    created_at
from {{ ref('source_table') }}

Seed

Option Description Required Default
primary_key Primary key expression to use during table creation no The first column of CSV will be used as default.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbt_ydb-0.0.8.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dbt_ydb-0.0.8-py3-none-any.whl (25.1 kB view details)

Uploaded Python 3

File details

Details for the file dbt_ydb-0.0.8.tar.gz.

File metadata

  • Download URL: dbt_ydb-0.0.8.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.11

File hashes

Hashes for dbt_ydb-0.0.8.tar.gz
Algorithm Hash digest
SHA256 bb76ffa6daef19ede1373677ea8c7917e0dfc25a0019da3b95264ff1aea8557a
MD5 d9560775a7361d9a1acc646d76dacfb8
BLAKE2b-256 1ebaa34cea77efbd6a609417033d5a391b97250ac64eef01adc68b16758b7e9b

See more details on using hashes here.

File details

Details for the file dbt_ydb-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: dbt_ydb-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.11

File hashes

Hashes for dbt_ydb-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 162dba7ff9bccbe675d70ef9f988aacae6bb64a090c6a8ef062bcd8b819d78bb
MD5 4745679d7d424abb70a4a8526a1280f2
BLAKE2b-256 854b3864bcdeab4550c145a04e078ad1a25591c1ab7b8dc2b999323a80849b52

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page