Dmitry Balabka

Results 126 comments of Dmitry Balabka

@shadowhand , that is an interesting idea. Unfortunately, the `createCustomer` method is a part of the library, and there is no easy way to extend it. Furthermore, `createCustomer` is strictly...

I've added our implementation in PR https://github.com/dask/distributed/pull/8884 I'll add more details about the implementation later.

Related PyArrow PR: https://github.com/apache/arrow/pull/11877 https://github.com/apache/arrow/blob/e2a5b4e90243c8b677218fa2f7d8cb483fb3a840/cpp/src/arrow/type.cc#L2423-L2425

@dstogov, thanks a lot for your quick answer. Everything makes sense. > The IR framework is similar to V8 Turbofan. It should produce code of similar quality but do this...

It is possible that the Linux user name contains `.`. Basically, it might happen even w/o specifying a custom name because generated cluster name does not sanitize the name as...

To fix the issue, `aiohttp` needs to support the path in `base_url`: https://github.com/aio-libs/aiohttp/issues/6647 It works for me in my patched version.

@jacobtomlinson , I think the simplest way to reproduce the problem is to put k8s API behind the proxy and add an extra path (proxy `http://127.0.0.1/somepath` to `http://127.0.0.1`) and adjust...

While I believe that #849 is a proper fix, the open constraints like `kr8s>=0.9.0` should be avoided because they might introduce problems with library compatibility: https://github.com/dask/dask-kubernetes/blob/main/requirements.txt#L8 Probably, the correct constraint...

@jacobtomlinson, it seems another place should be fixed with the same problem. Please see #858

@fjetter , thanks for a quick reply. I will try it and get back to you with the feedback.