chegoryu

Results 26 issues of chegoryu

It seems that right now it is impossible to override this timeout via request options: https://github.com/ytsaurus/ytsaurus/blob/f1f1a57864c50ab6215fd936d2e221f348629182/yt/yt/ytlib/api/native/config.cpp#L207-L210 It will be very convenient to pass it via query settings for example (to...

query tracker

I have workloads that very often need to read the entire table (they perform some stateful data processing). Sometimes I need to feed the same data to these workloads twice,...

I leaked my token with the following code: ```python client.run_operation( VanillaSpecBuilder() .title("") .max_failed_job_count(1) .begin_task("main") .command(run_main_job(yt_client_config)) .environment({"YT_ALLOW_HTTP_REQUESTS_TO_YT_FROM_JOB": "1"}) .spec( { "secure_vault": { "YT_TOKEN": os.environ["YT_TOKEN"], }, "enable_secure_vault_variables_in_job_shell": True, } ) .job_count(1) .end_task(),...

SDK
mapreduce

From chat: https://t.me/ytsaurus_ru/7797 I sometimes encounter the following random error when using cpp `TTableWriter`: ``` terminate called after throwing an instance of 'NYT::TErrorResponse' what(): '../ytsaurus/ytsaurus/library/cpp/blockcodecs/core/stream.cpp:190: block size exceeds 1 GiB';...

SDK

**Describe the bug** I gets false positive `Subscript for class "list" will generate runtime exception; enclose type annotation in quotes (reportIndexIssue)` error with pyright `v1.1.376`+ when `[tool.pyright]` is present in...

bug
question
addressed in next version

Looks like max duration is hardcoded here (YQL query just fails due to transaction abort after one day): https://github.com/ytsaurus/ytsaurus/blob/61679c91c33cbd542fef6fad322947d83b4c659c/yt/yt/server/query_tracker/yql_engine.cpp#L93