Yandex DB#

The Yandex DB module provides a version of the DBContextStorage class that designed to work with Yandex and other databases. Yandex DataBase is a fully-managed cloud-native SQL service that makes it easy to set up, operate, and scale high-performance and high-availability databases for your applications.

The Yandex DB module uses the Yandex Cloud SDK, which is a python library that allows you to work with Yandex Cloud services using python. This allows Chatsky to easily integrate with the Yandex DataBase and take advantage of the scalability and high-availability features provided by the service.

class YDBContextStorage(path, rewrite_existing=False, partial_read_config=None, table_name_prefix='chatsky_table', timeout=5)[source]#

Bases: DBContextStorage

Version of the DBContextStorage for YDB.

CONTEXT table is represented by contexts table. Columns of the table are: id, current_turn_id, created_at updated_at, misc and framework_data.

TURNS table is represented by turns table. olumns of the table are: id, key, label, request and response.

Parameters:
  • path (str) – Standard sqlalchemy URI string. One of grpc or grpcs can be chosen as a protocol. Example: grpc://localhost:2134/local. NB! Do not forget to provide credentials in environmental variables or set YDB_ANONYMOUS_CREDENTIALS variable to 1!

  • rewrite_existing (bool) – Whether TURNS modified locally should be updated in database or not.

  • partial_read_config (Optional[Dict[Literal['labels', 'requests', 'responses'], Union[Literal['__all__'], int, Set[int]]]]) – Dictionary of subscripts for all possible turn items.

  • table_name_prefix (str) – “namespace” prefix for the two tables created for context storing.

  • timeout (int) – Waiting timeout for the database driver.

_LIMIT_VAR = 'limit'#
_KEY_VAR = 'key'#
is_concurrent: bool = True#
async _connect()[source]#
Return type:

None

async _does_table_exist(table_name)[source]#
Return type:

bool

async _create_main_table(table_name)[source]#
Return type:

None

async _create_turns_table(table_name)[source]#
Return type:

None

async _load_main_info(ctx_id)[source]#
Return type:

Optional[ContextMainInfo]

async _update_context(ctx_id, ctx_info, field_info)[source]#
Return type:

None

async _delete_context(ctx_id)[source]#
Return type:

None

async _load_field_latest(ctx_id, field_name)[source]#
Return type:

List[Tuple[int, bytes]]

async _load_field_keys(ctx_id, field_name)[source]#
Return type:

List[int]

async _load_field_items(ctx_id, field_name, keys)[source]#
Return type:

List[Tuple[int, bytes]]

async _clear_all()[source]#
Return type:

None