gituser/docker_multiarch/: dbt-adapters-1.14.8 metadata and description

Simple index

The set of adapter protocols and base functionality that supports integration with dbt-core

author_email dbt Labs <info@dbtlabs.com>
classifiers
  • Development Status :: 5 - Production/Stable
  • License :: OSI Approved :: Apache Software License
  • Operating System :: MacOS :: MacOS X
  • Operating System :: Microsoft :: Windows
  • Operating System :: POSIX :: Linux
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
description_content_type text/markdown
keywords adapter,adapters,database,dbt,dbt Cloud,dbt Core,dbt Labs,dbt-core,elt
maintainer_email dbt Labs <info@dbtlabs.com>
project_urls
  • Homepage, https://github.com/dbt-labs/dbt-adapters/tree/main/dbt-adapters
  • Documentation, https://docs.getdbt.com
  • Repository, https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-adapters
  • Issues, https://github.com/dbt-labs/dbt-adapters/issues
  • Changelog, https://github.com/dbt-labs/dbt-adapters/blob/main/dbt-adapters/CHANGELOG.md
requires_dist
  • agate<2.0,>=1.0
  • dbt-common<2.0,>=1.13
  • mashumaro[msgpack]<3.15,>=3.9
  • protobuf<6.0,>=5.0
  • pytz>=2015.7
  • typing-extensions<5.0,>=4.0
requires_python >=3.9.0
File Tox results History
dbt_adapters-1.14.8-py3-none-any.whl
Size
169 KB
Type
Python Wheel
Python
3

dbt logo

Adapters

There are two major adapter types: base and sql.

base

BaseAdapter defines the base functionality an adapter is required to implement in order to function with dbt-core. There are several methods which have default implementations as well as methods that require the concrete adapter to implement them.

sql

SQLAdapter inherits from BaseAdapter, updates default implementations to work with SQL-based platforms, and defines additional required methods to support those defaults.

Components

An adapter is composed of several components.

The first two are platform-specific and require significant implementation in a concrete adapter. The last two are largely implemented in dbt-adapters with minor adjustments in a concrete adapter.

Connections

This component is responsible for creating and managing connections to storage and compute.

Files

Dialect

This component is responsible for translating a request from dbt-core into a specific set of actions on the platform.

Files

Relation caching

This component is responsible for managing a local cache of relations, relation metadata, and dependencies between relations.

Files

Integration with dbt-core

This component is responsible for managing the interface between dbt-core and a concrete adapter.

Files