Maxim Martynov

Results 76 issues of Maxim Martynov

In #641 spawner can add extra services after pod creation. To pass created service name, I've tries to set up notebook environment like this: ```python c.KubeSpawner.environment = {"SPARK_DRIVER_HOST": "jupyter-{username}-spark-driver--{servername}"} ```...

Hi. I'm using authlib in Python client for a REST API implementing OAuth 2.0. Usage is simple as: ```python my_python_client = MyPythonClient(url="http://domain.com/api", token="some.jwt.token") my_python_client.whoami() ``` Method `whoami` sends request to...

question
jose

# Summary I've running an application with uvicorn, and also using [python-json-logger](https://github.com/madzak/python-json-logger) to output all production logs in JSON (to pass them to ELK as is, without complicated parsing config)....

### What's wrong Source code: https://github.com/MobileTeleSystems/horizon/blob/adc102caa8a84c281b8401b17d6d7998c073941e/horizon/client/base.py#L29 ```python class BaseResponse(Protocol): """Response-like object. Same interface is shared between requests.Response and httpx.Response""" @property def status_code(self) -> int: ... @property def content(self) -> Any:...

bug

User may set up `kubespawner.proxy.KubeIngressProxy` which allows to use builtin k8s Ingress to create routes for hub, user notebooks and services. But this helm chart will always create proxy pod...

new

Some languages are running inside VMs which can start quite slowly (like JVM or ErlangVM). But I see that only process start and finish times are recorded. So this startup...

[sphinx-material](https://github.com/bashtage/sphinx-material/) theme is not being updated since 2021. It's actually quite old fork of mkdocs-material theme, and the divergence happened a long time ago. The most recent fork of original...

!new theme

Hi. I'm trying to save dataframe to Clickhouse table which does not exists yet (without explicit `CREATE TABLE ...` query). But it looks like that both DataFrameWriterV2 and DataFrameWriterV1 are...