Skip to content

Commit

Permalink
add new YDB provider (apache#39996)
Browse files Browse the repository at this point in the history
  • Loading branch information
uzhastik authored Jun 15, 2024
1 parent 1363043 commit 161fd55
Show file tree
Hide file tree
Showing 79 changed files with 2,721 additions and 67 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/airflow_providers_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ body:
- vertica
- weaviate
- yandex
- ydb
- zendesk
validations:
required: true
Expand Down
6 changes: 6 additions & 0 deletions .github/boring-cyborg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,12 @@ labelPRBasedOnFilePath:
- tests/providers/yandex/**/*
- tests/system/providers/yandex/**/*

provider:ydb:
- airflow/providers/ydb/**/*
- docs/apache-airflow-providers-ydb/**/*
- tests/providers/ydb/**/*
- tests/system/providers/ydb/**/*

provider:zendesk:
- airflow/providers/zendesk/**/*
- docs/apache-airflow-providers-zendesk/**/*
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ influxdb, jdbc, jenkins, microsoft.azure, microsoft.mssql, microsoft.psrp, micro
mysql, neo4j, odbc, openai, openfaas, openlineage, opensearch, opsgenie, oracle, pagerduty,
papermill, pgvector, pinecone, postgres, presto, qdrant, redis, salesforce, samba, segment,
sendgrid, sftp, singularity, slack, smtp, snowflake, sqlite, ssh, tableau, tabular, telegram,
teradata, trino, vertica, weaviate, yandex, zendesk
teradata, trino, vertica, weaviate, yandex, ydb, zendesk

# END PROVIDER EXTRAS HERE

Expand Down
33 changes: 33 additions & 0 deletions airflow/providers/ydb/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.. Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
.. NOTE TO CONTRIBUTORS:
Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
and you want to add an explanation to the users on how they are supposed to deal with them.
The changelog is updated and maintained semi-automatically by release manager.
``apache-airflow-providers-ydb``


Changelog
---------

1.0.0
.....

Initial version of the provider.
39 changes: 39 additions & 0 deletions airflow/providers/ydb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
# OVERWRITTEN WHEN PREPARING DOCUMENTATION FOR THE PACKAGES.
#
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
# `PROVIDER__INIT__PY_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
#
from __future__ import annotations

import packaging.version

from airflow import __version__ as airflow_version

__all__ = ["__version__"]

__version__ = "1.0.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.7.0"
):
raise RuntimeError(
f"The package `apache-airflow-providers-ydb:{__version__}` needs Apache Airflow 2.7.0+"
)
16 changes: 16 additions & 0 deletions airflow/providers/ydb/hooks/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
16 changes: 16 additions & 0 deletions airflow/providers/ydb/hooks/_vendor/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
43 changes: 43 additions & 0 deletions airflow/providers/ydb/hooks/_vendor/dbapi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
from .connection import AsyncConnection, Connection, IsolationLevel # noqa: F401
from .cursor import AsyncCursor, Cursor, YdbQuery # noqa: F401
from .errors import (
DatabaseError,
DataError,
Error,
IntegrityError,
InterfaceError,
InternalError,
NotSupportedError,
OperationalError,
ProgrammingError,
Warning,
)


class YdbDBApi:
def __init__(self):
self.paramstyle = "pyformat"
self.threadsafety = 0
self.apilevel = "1.0"
self._init_dbapi_attributes()

def _init_dbapi_attributes(self):
for name, value in {
"Warning": Warning,
"Error": Error,
"InterfaceError": InterfaceError,
"DatabaseError": DatabaseError,
"DataError": DataError,
"OperationalError": OperationalError,
"IntegrityError": IntegrityError,
"InternalError": InternalError,
"ProgrammingError": ProgrammingError,
"NotSupportedError": NotSupportedError,
}.items():
setattr(self, name, value)

def connect(self, *args, **kwargs) -> Connection:
return Connection(*args, **kwargs)

def async_connect(self, *args, **kwargs) -> AsyncConnection:
return AsyncConnection(*args, **kwargs)
185 changes: 185 additions & 0 deletions airflow/providers/ydb/hooks/_vendor/dbapi/connection.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
import collections.abc
import posixpath
from typing import Any, List, NamedTuple, Optional

import sqlalchemy.util as util
import ydb

from .cursor import AsyncCursor, Cursor
from .errors import InterfaceError, InternalError, NotSupportedError


class IsolationLevel:
SERIALIZABLE = "SERIALIZABLE"
ONLINE_READONLY = "ONLINE READONLY"
ONLINE_READONLY_INCONSISTENT = "ONLINE READONLY INCONSISTENT"
STALE_READONLY = "STALE READONLY"
SNAPSHOT_READONLY = "SNAPSHOT READONLY"
AUTOCOMMIT = "AUTOCOMMIT"


class Connection:
_await = staticmethod(util.await_only)

_is_async = False
_ydb_driver_class = ydb.Driver
_ydb_session_pool_class = ydb.SessionPool
_ydb_table_client_class = ydb.TableClient
_cursor_class = Cursor

def __init__(
self,
host: str = "",
port: str = "",
database: str = "",
**conn_kwargs: Any,
):
self.endpoint = f"grpc://{host}:{port}"
self.database = database
self.conn_kwargs = conn_kwargs
self.credentials = self.conn_kwargs.pop("credentials", None)
self.table_path_prefix = self.conn_kwargs.pop("ydb_table_path_prefix", "")

if "ydb_session_pool" in self.conn_kwargs: # Use session pool managed manually
self._shared_session_pool = True
self.session_pool: ydb.SessionPool = self.conn_kwargs.pop("ydb_session_pool")
self.driver = (
self.session_pool._driver
if hasattr(self.session_pool, "_driver")
else self.session_pool._pool_impl._driver
)
self.driver.table_client = self._ydb_table_client_class(self.driver, self._get_table_client_settings())
else:
self._shared_session_pool = False
self.driver = self._create_driver()
self.session_pool = self._ydb_session_pool_class(self.driver, size=5)

self.interactive_transaction: bool = False # AUTOCOMMIT
self.tx_mode: ydb.AbstractTransactionModeBuilder = ydb.SerializableReadWrite()
self.tx_context: Optional[ydb.TxContext] = None

def cursor(self):
return self._cursor_class(self.session_pool, self.tx_mode, self.tx_context, self.table_path_prefix)

def describe(self, table_path: str) -> ydb.TableDescription:
abs_table_path = posixpath.join(self.database, self.table_path_prefix, table_path)
cursor = self.cursor()
return cursor.describe_table(abs_table_path)

def check_exists(self, table_path: str) -> ydb.SchemeEntry:
abs_table_path = posixpath.join(self.database, self.table_path_prefix, table_path)
cursor = self.cursor()
return cursor.check_exists(abs_table_path)

def get_table_names(self) -> List[str]:
abs_dir_path = posixpath.join(self.database, self.table_path_prefix)
cursor = self.cursor()
return [posixpath.relpath(path, abs_dir_path) for path in cursor.get_table_names(abs_dir_path)]

def set_isolation_level(self, isolation_level: str):
class IsolationSettings(NamedTuple):
ydb_mode: ydb.AbstractTransactionModeBuilder
interactive: bool

ydb_isolation_settings_map = {
IsolationLevel.AUTOCOMMIT: IsolationSettings(ydb.SerializableReadWrite(), interactive=False),
IsolationLevel.SERIALIZABLE: IsolationSettings(ydb.SerializableReadWrite(), interactive=True),
IsolationLevel.ONLINE_READONLY: IsolationSettings(ydb.OnlineReadOnly(), interactive=False),
IsolationLevel.ONLINE_READONLY_INCONSISTENT: IsolationSettings(
ydb.OnlineReadOnly().with_allow_inconsistent_reads(), interactive=False
),
IsolationLevel.STALE_READONLY: IsolationSettings(ydb.StaleReadOnly(), interactive=False),
IsolationLevel.SNAPSHOT_READONLY: IsolationSettings(ydb.SnapshotReadOnly(), interactive=True),
}
ydb_isolation_settings = ydb_isolation_settings_map[isolation_level]
if self.tx_context and self.tx_context.tx_id:
raise InternalError("Failed to set transaction mode: transaction is already began")
self.tx_mode = ydb_isolation_settings.ydb_mode
self.interactive_transaction = ydb_isolation_settings.interactive

def get_isolation_level(self) -> str:
if self.tx_mode.name == ydb.SerializableReadWrite().name:
if self.interactive_transaction:
return IsolationLevel.SERIALIZABLE
else:
return IsolationLevel.AUTOCOMMIT
elif self.tx_mode.name == ydb.OnlineReadOnly().name:
if self.tx_mode.settings.allow_inconsistent_reads:
return IsolationLevel.ONLINE_READONLY_INCONSISTENT
else:
return IsolationLevel.ONLINE_READONLY
elif self.tx_mode.name == ydb.StaleReadOnly().name:
return IsolationLevel.STALE_READONLY
elif self.tx_mode.name == ydb.SnapshotReadOnly().name:
return IsolationLevel.SNAPSHOT_READONLY
else:
raise NotSupportedError(f"{self.tx_mode.name} is not supported")

def begin(self):
self.tx_context = None
if self.interactive_transaction:
session = self._maybe_await(self.session_pool.acquire)
self.tx_context = session.transaction(self.tx_mode)
self._maybe_await(self.tx_context.begin)

def commit(self):
if self.tx_context and self.tx_context.tx_id:
self._maybe_await(self.tx_context.commit)
self._maybe_await(self.session_pool.release, self.tx_context.session)
self.tx_context = None

def rollback(self):
if self.tx_context and self.tx_context.tx_id:
self._maybe_await(self.tx_context.rollback)
self._maybe_await(self.session_pool.release, self.tx_context.session)
self.tx_context = None

def close(self):
self.rollback()
if not self._shared_session_pool:
self._maybe_await(self.session_pool.stop)
self._stop_driver()

@classmethod
def _maybe_await(cls, callee: collections.abc.Callable, *args, **kwargs) -> Any:
if cls._is_async:
return cls._await(callee(*args, **kwargs))
return callee(*args, **kwargs)

def _get_table_client_settings(self) -> ydb.TableClientSettings:
return (
ydb.TableClientSettings()
.with_native_date_in_result_sets(True)
.with_native_datetime_in_result_sets(True)
.with_native_timestamp_in_result_sets(True)
.with_native_interval_in_result_sets(True)
.with_native_json_in_result_sets(False)
)

def _create_driver(self):
driver_config = ydb.DriverConfig(
endpoint=self.endpoint,
database=self.database,
table_client_settings=self._get_table_client_settings(),
credentials=self.credentials,
)
driver = self._ydb_driver_class(driver_config)
try:
self._maybe_await(driver.wait, timeout=5, fail_fast=True)
except ydb.Error as e:
raise InterfaceError(e.message, original_error=e) from e
except Exception as e:
self._maybe_await(driver.stop)
raise InterfaceError(f"Failed to connect to YDB, details {driver.discovery_debug_details()}") from e
return driver

def _stop_driver(self):
self._maybe_await(self.driver.stop)


class AsyncConnection(Connection):
_is_async = True
_ydb_driver_class = ydb.aio.Driver
_ydb_session_pool_class = ydb.aio.SessionPool
_ydb_table_client_class = ydb.aio.table.TableClient
_cursor_class = AsyncCursor
Loading

0 comments on commit 161fd55

Please sign in to comment.