Brian Goff
Brian Goff
I think this is because your href is set to "#". Changing this fixed it for me.
For me, completion is pretty much always slow on complex objects (github.com/docker/docker/daemon.Daemon, for example). Not surprisingly there is tons of time spent in GC. Attached is a flame graph as...
Just to copy over what I said in moby/moby, there should be nothing to change in docker-py (or any API client). If docker-py is broken because of a proposed change...
Manifest requests that are by digest should be cached forever. Mutable referenced are cached for 1s, and then if Hub is down the stale cache is used. When docker does...
Note there is also `ratelimitpreview/test:latest` which uses for real throttling instead of always. I asked if they could add a debug one so it's like... 2req/min or something to make...
So, I have concluded you are indeed correct. Pull calls: https://github.com/moby/moby/blob/bb23f1bf61cb49c5aa3f7df934d79c305afb7c8c/distribution/pull_v2.go#L333 Which calls https://github.com/moby/moby/blob/bb23f1bf61cb49c5aa3f7df934d79c305afb7c8c/vendor/github.com/docker/distribution/registry/client/repository.go#L179-L184 Which does a `GET` here: https://github.com/moby/moby/blob/bb23f1bf61cb49c5aa3f7df934d79c305afb7c8c/vendor/github.com/docker/distribution/registry/client/repository.go#L470 It should be calling `Tags()` in the case of a...
Patch: https://github.com/moby/moby/pull/41607
Interesting way of handling caching there! I think it's pretty good.
Moby patch is merged, will be in 20.10 RC1.
I would also like to see this. One thing I found when working on https://github.com/cpuguy83/containerd-shim-systemd-v1 is if a command exits quickly enough this can cause issues with systemd being able...