Max Zuev

Results 7 comments of Max Zuev

@zlobober It seems the issue was fixed in https://github.com/ytsaurus/ytsaurus/commit/f7db734cacc99fc679b824f7b7ce52cc785145b6 According to the first message there are "urllib3 (1.26.9) or chardet (None)/charset_normalizer (3.3.2)" -> * urllib3 == 1.26.9 (valid https://github.com/ytsaurus/ytsaurus/blame/8edad184e0eb11eb0e6884ba98f50a72bec24e80/yt/python/contrib/python-requests/requests/__init__.py#L81) *...

Problem has been reproduced when a user has fresh chardet in a python environment. https://github.com/ytsaurus/ytsaurus/commit/6f6b729862cc45b867134960e7e138543789c810 should fix this issue.

Jupyterlab works on macbook m1. How to reproduce: 1. Install pyenv https://github.com/pyenv/pyenv 2. Install python 3.8: `pyenv install 3.8` (this version works on our cluster by default) 3. Create and...

There is a problem using class-based operations. For some reason yt client can't pickle classes. How to reproduce: https://github.com/thenno/yt-on-jupyter-lab-example/blob/main/ytwrapperplusjupyter_broken.ipynb ``` Traceback (most recent call last): File "_py_runner.py", line 174, in...

I faced the same problem. ``` from yt import wrapper as yt from datetime import datetime @yt.yt_dataclass class TableRow: field_datetime: yt.schema.Datetime yt.write_table_structured("//tmp/example_write_structured_datetime", TableRow, [TableRow(datetime.now())]) ``` produces the exception ``` SkiffError:...

Hi @chegoryu, Do I understand correctly that the main inconvenience is that you need to independently declare the type and conversion rules (==type for type annotation)? I understand this inconvenience,...

> It is not very symmetrical to how yt_dataclasses work now. Let me point out it works exactly the same as for other types that are defined in https://github.com/ytsaurus/ytsaurus/blob/main/yt/python/yt/wrapper/schema/types.py#L360 :...