chegoryu
chegoryu
Usually, when you are using rsync with `--append` mode, you have `src.mtime == dst.mtime` when file sizes are equal, but sometimes there is a clock difference between machines. Code here...
Assume you added `options.ThreadCount_ + 1` write tasks to writer. `options.ThreadCount_` tasks are running now and the last one is waiting in the `ThreadPool_` queue, i.e. all `TaskFutures_` are not...
Right now there is no sugar for working with queries. Even query waiting must be implemented manually. I want to have official sugar like this: https://github.com/ytsaurus/ytsaurus/blob/a3233e6e3ff64374a4f6cc7febc9302834beb4fa/yt/python/yt/wrapper/operation_commands.py#L613-L617 I have my own...
As far as I known the only way to change file codec is to overwrite the file completely This is not very convenient and more dangerous than just calling yt...
Currently, a race is possible when you try to abort a query, but query finishes between `get_state` and `abort`: ```shell >>> client.get_query('8afed27-c66b620d-f4e2d5dc-89661f2b', attributes=["state"]) {'state': 'completed'} >>> client.abort_query('8afed27-c66b620d-f4e2d5dc-89661f2b') Traceback (most recent...
### Problem Pyright fails to understand this magic: https://github.com/ytsaurus/ytsaurus/blob/0cb099dce692d6bda9038be19c38e8e0aa3a35a9/yt/python/yt/wrapper/schema/types.py#L31-L38 Without additional changes I got something like this on [mr example](https://github.com/ytsaurus/ytsaurus/blob/main/yt/python/examples/map_reduce_typed/example.py): ```bash $ PYRIGHT_PYTHON_FORCE_VERSION=1.1.332 -m pyright --pythonpath example.py // ... /home//example.py...
Right now command and env are hardcoded: https://github.com/ytsaurus/ytsaurus/blob/82a112da7c41ded12594cc64ad776ae511e5134a/yt/chyt/controller/internal/jupyt/controller.go#L34-L45 Also there is no way to pass `environment/secure_vault` or add custom patch to spec: https://github.com/ytsaurus/ytsaurus/blob/82a112da7c41ded12594cc64ad776ae511e5134a/yt/chyt/controller/internal/jupyt/controller.go#L59-L80 I have ugly workaround with custom docker...
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en Unfortunately, I cannot test this change, since the OS version does not have the cython parts, in particular...
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en This commit helps avoid these warnings: ```shell [libprotobuf WARNING /root/.conan/data/protobuf/3.17.1/_/_/build/6434614c57c36a737c095eb9c5145f8048dd86aa/src/src/google/protobuf/compiler/parser.cc:651] No syntax specified for the proto file: yt/yt_proto/yt/formats/extension.proto....