diwu-sf
diwu-sf
@droe thanks for that draft implementation. I'm trying to understand a few pieces of the: - in `timespec_to_ms64` it looks like the precision is only at the millisecond level, would...
@burnash hi, what do you think about adding this support to the range paginators? This kind of thing would be useful for POST rest endpoints (and potentially for graphQL queries...
This is the API that has the pagination in the body: https://api.govspend.com/docs/?url=/docs#/ `POST /runSavedSearch` I did have to make a custom paginator for now to make this work, which is...
Just out of curiosity, what were the main reasons you guys wanted to use `sysbox` as the container runtime vs gvisor or the standard runtime? We're on Google autopilot GKE,...
Stop trying to run this on Colab. Run it on your actual computer.
I did some debugging into this, it appears that there's many unix sockets being opened per "click" to the docker daemon socket. There appear to be a leak somewhere.
Every time the docker container log is retrieved, a bunch of unix socket FDs are leaked. The issue is the same as what's reported in https://github.com/docker/docker-py/issues/3282 As far as I...
Bug is less severe, but it's still fundamentally there, take a look at the output of `lsof -p {pid of the uvicorn process}`: ``` python3.1 12305 diwu 98u IPv6 0xcc4fb2f8cb35a3a9...
The TCP isn't being leaked, so now the only remaining accumulating leak is the unix docker sockets. You can repro it by repeated clicking on a file and then do...
No there's still Unix socket leak to the docker socket due to the log streamer. Use the same repo and you should see that Unix sockets are still being accumulated...