ydb-python-sdk
ydb-python-sdk copied to clipboard
YDB Python SDK
GRPC timeouts work for all query time, for stream queries in contains connection time and time for work with stream. In out will be better to split them and set...
# Bug Report **YDB Python SDK version:** 3.3.5, async client **Environment** logbroker, lbkx **Current behavior:** Sometime reader hung up while server upgrade. asyncio.wait_for(reader.receive_message(), timeout=1.0) - exit by timeout forever. **Expected...
It would be cool if library users would have the opportunity to see the description of each available function
# Feature Request **Describe the Feature Request** For ydb with serverless proxy or for serverless functions no reason to use discovery. Use start endpoint as target of all requests will...
Regular measure delay of tcp connections to nodes in different DCs. Set DC of fastest connection as local. related code with use local dc: https://github.com/ydb-platform/ydb-python-sdk/blob/7893319a4b8c35872f1455afcd3acc1ed24331cb/ydb/resolver.py#L103-L108
# Bug Report **YDB Python SDK version:** **Environment** Mac OS X **Current behavior:** select AddTimezone(Datetime("2000-01-01T12:00:00Z"),"Europe/Moscow"), AddTimezone(Datetime("2000-01-01T12:00:00Z"),"America/Los_Angeles"), cast(RemoveTimezone(TzDatetime("2000-01-01T12:00:00,Europe/Moscow")) as string), cast(RemoveTimezone(TzDatetime("2000-01-01T12:00:00,America/Los_Angeles")) as string); def _pb_to_primitive(type_pb, value_pb, table_client_settings): > return _primitive_type_by_id.get(type_pb.type_id).get_value(value_pb, table_client_settings)...
# Bug Report **YDB Python SDK version:** ydb-3.3.5 **Environment** Mac OS X **Current behavior:** for row_proto in message.rows: row = _Row(message.columns) for column, value, column_info in zip(message.columns, row_proto.items, column_parsers): v_type...
# Bug Report **YDB Python SDK version:** 3.3.5 **Current behavior:** Calling .close() method of async topic writer may lead to unexpected asyncio.CancelledError ``` File ".../ydb/_topic_writer/topic_writer_asyncio.py", line 87, in close await...
# Bug Report **YDB Python SDK version:** 3.3.4 **Current behavior:** code not completed **Expected behavior:** stop test **Steps to reproduce:** ```python import ydb.aio import asyncio async def main(): driver =...