Code Monkey home page Code Monkey logo

Comments (32)

AndreHamilton-MSFT avatar AndreHamilton-MSFT commented on September 24, 2024 6

We are in the process of rolling out new hardware that will resolve this issue. We are already seeing decreased throttling in the last few hours. It will take a while to roll this out globally, but you should already be seeing improvements if you are located in the central us regions

from containerregistry.

ptr727 avatar ptr727 commented on September 24, 2024 3

Similar issue here, running a matrix, build fails, getting error 429:

ERROR: failed to solve: mcr.microsoft.com/dotnet/sdk:7.0-alpine: failed to copy: httpReadSeeker: failed open: unexpected status code https://mcr.microsoft.com/v2/dotnet/sdk/manifests/sha256:9efa4cb38fb3b957595b4dd60a028044a1f7750d058405ab428153c3aa30ec01: 429 Too Many Requests
Error: buildx failed with: ERROR: failed to solve: mcr.microsoft.com/dotnet/sdk:7.0-alpine: failed to copy: httpReadSeeker: failed open: unexpected status code https://mcr.microsoft.com/v2/dotnet/sdk/manifests/sha256:9efa4cb38fb3b957595b4dd60a028044a1f7750d058405ab428153c3aa30ec01: 429 Too Many Requests

from containerregistry.

AndreHamilton-MSFT avatar AndreHamilton-MSFT commented on September 24, 2024 3

@clemlesne we are actively working to reduce some of the throttling you have been noticing and will update once we have more

from containerregistry.

lfraile avatar lfraile commented on September 24, 2024 3

Hello, one more here with errors 429 :(

from containerregistry.

benmccallum avatar benmccallum commented on September 24, 2024 1

We're getting this too.

Unfortunately docker caching with the gha (GitHub actions cache) is just not feasible with GHA's 10GB cache limit and Docker images with layers that are several GBs.

Patiently waiting for the S3-backed caching and hoping we can make do for now. 🙏

from containerregistry.

perSjov avatar perSjov commented on September 24, 2024 1

Still happening today

from containerregistry.

boukeversteegh avatar boukeversteegh commented on September 24, 2024 1

Hello, our build pipelines are all blocked due to 429's on the container registry

az webapp deployment slot swap --slot staging --name **** --resource-group ****

Warning: Unable to fetch all az cli versions, please report it as an issue on https://github.com/Azure/CLI/issues. Output: Ref A: 4237CA5349C14533AAC450D8F8CB4763 Ref B: DM2EDGE0507 Ref C: 2024-05-08T08:31:59Z
, Error: SyntaxError: Unexpected token 'R', "Ref A: 423"... is not valid JSON
Starting script execution via docker image mcr.microsoft.com/azure-cli:2.59.0
Error: Error: Unable to find image 'mcr.microsoft.com/azure-cli:2.59.0' locally
docker: Error response from daemon: error parsing HTTP 429 response body: invalid character 'R' looking for beginning of value: "Ref A: 34A2CDDED8114A60AB26872384E74885 Ref B: DM2EDGE0912 Ref C: 2024-05-08T08:31:59Z".

from containerregistry.

ameya-karbonhq avatar ameya-karbonhq commented on September 24, 2024 1

Hello,
We are also experiencing the same and blocking our deployments.

Starting script execution via docker image mcr.microsoft.com/azure-cli:2.55.0
Error: Error: Unable to find image 'mcr.microsoft.com/azure-cli:2.55.0' locally
2.55.0: Pulling from azure-cli
96526aa774ef: Pulling fs layer
430548f4d4bf: Pulling fs layer
9ae8a48eae03: Pulling fs layer
2d30bba99930: Pulling fs layer
3d288dfecc47: Pulling fs layer
2a58a5c1116a: Pulling fs layer
4f4fb700ef54: Pulling fs layer
2d30bba99930: Waiting
3d288dfecc47: Waiting
2a58a5c1116a: Waiting
4f4fb700ef54: Waiting
docker: error pulling image configuration: download failed after attempts=1: error parsing HTTP 429 response body: invalid character 'R' looking for beginning of value: "Ref A: 657DA19E112344D5A432995949A2CA40 Ref B: DM2EDGE1016 Ref C: 2024-05-08T08:36:29Z".
See 'docker run --help'.

cleaning up container...

from containerregistry.

clemlesne avatar clemlesne commented on September 24, 2024

Builds are still failing regularly, from my managed GitHub Actions.

from containerregistry.

telia-ankita avatar telia-ankita commented on September 24, 2024

Hi Team,
We are also facing same issue. Did anyone get the solution?

from containerregistry.

AndreHamilton-MSFT avatar AndreHamilton-MSFT commented on September 24, 2024

We are working on ways to reduce the likelihood of this occuring.

from containerregistry.

bnneupart avatar bnneupart commented on September 24, 2024

We also got build fails because of this...

from containerregistry.

alensindicic avatar alensindicic commented on September 24, 2024

This is still an issue.

from containerregistry.

ptr727 avatar ptr727 commented on September 24, 2024

Also getting buildx failed with: ERROR: failed to solve: error writing layer blob: maximum timeout reached

I resorted to using max-parallel: 4 in the matrix strategy, builds now take forever, but seem to be more reliable.

from containerregistry.

grzesuav avatar grzesuav commented on September 24, 2024

Observed the same issue from AKS cluster - Azure/AKS#4279

from containerregistry.

grzesuav avatar grzesuav commented on September 24, 2024

In the AKS Issue I created they admit there is a throttling issue in centralus region

from containerregistry.

osbash avatar osbash commented on September 24, 2024

I am experiencing the same thing. This needs to be resolved immediately as its completely put a stop to our deployments.

from containerregistry.

jay-pawar-mastery avatar jay-pawar-mastery commented on September 24, 2024

I am seeing ERROR: pulling from host mcr.microsoft.com failed with status code [manifests 8.0]: 429 Too Many Requests as well.

from containerregistry.

dejancg avatar dejancg commented on September 24, 2024

Another one here, since today.

from containerregistry.

lol768 avatar lol768 commented on September 24, 2024

Also experiencing this :(

from containerregistry.

vitalykarasik avatar vitalykarasik commented on September 24, 2024

It seems that caching should be an answer to this issue, but I'm not sure which method I should use in my Github workflow.
I'm using mcr.microsoft.com for both "dotnet test" and as a base image for my .NET build.
I.e.

docker run --rm -v $(pwd):/app -w /app mcr.microsoft.com/dotnet/sdk:6.0 dotnet test testdir
and
docker build .

from containerregistry.

da-zu avatar da-zu commented on September 24, 2024

Me too, our CI/CD pipelines are failing randomly due to 429. Please fix ASAP! :)

from containerregistry.

codehunter13 avatar codehunter13 commented on September 24, 2024

same problem over here. Pipelines are often failing. with this error

from containerregistry.

npiskarev avatar npiskarev commented on September 24, 2024

ERROR: failed to solve: mcr.microsoft.com/dotnet/aspnet:8.0: pulling from host mcr.microsoft.com failed with status code [manifests 8.0]: 429 Too Many Requests

same issue happened right now

from containerregistry.

mentallabyrinth avatar mentallabyrinth commented on September 24, 2024

Using Azure Pipelines, experiencing the same issue:

#3 [internal] load metadata for mcr.microsoft.com/dotnet/aspnet:8.0
#3 ERROR: pulling from host mcr.microsoft.com failed with status code [manifests 8.0]: 429 Too Many Requests

from containerregistry.

enf0rc3 avatar enf0rc3 commented on September 24, 2024

Using Github Actions also having this issue intermittently, we have about 5 docker containers being built in one Github action (same image), what is the best approach to cache?

   2 | >>> FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
   3 |     WORKDIR /app
   4 |     
--------------------
ERROR: failed to solve: mcr.microsoft.com/dotnet/sdk:8.0: pulling from host mcr.microsoft.com failed with status code [manifests 8.0]: 429 Too Many Requests

from containerregistry.

lol768 avatar lol768 commented on September 24, 2024

Many thanks for acknowledging, and for the detail on plans to resolve @AndreHamilton-MSFT

from containerregistry.

lfraile avatar lfraile commented on September 24, 2024

Thank you @AndreHamilton-MSFT !!

from containerregistry.

stevef51 avatar stevef51 commented on September 24, 2024

So we use Azure Devops for our CI builds. We have seen this issue over the last several weeks and I am still getting builds issues today. At the moment I am having to manually re-run builds and cross fingers that I don't get the Too Many Requests error, almost seems like a 50:50 on any given build

image

@AndreHamilton-MSFT when you say "should be seeing improvements if you are located in the central us regions" - I am guessing that is referring to the location of our build machines, we are using Azure VM's in Central US.

from containerregistry.

AndreHamilton-MSFT avatar AndreHamilton-MSFT commented on September 24, 2024

@stevef51 correct. We are still in the processing of rolling out the new hardware and i suspect your traffic landed on older hardware more prone to throttling. Going to see if i can make some further tweaks to reduce overall throttling likelihood. until we roll out globally you may still see some throttling, but we are working to roll that out as quickly and safely as possible.

from containerregistry.

bsripuram avatar bsripuram commented on September 24, 2024

@AndreHamilton-MSFT , We are still facing this issue, may i know the ETA by when you complete the rollout globally?

from containerregistry.

AndreHamilton-MSFT avatar AndreHamilton-MSFT commented on September 24, 2024

@bsripuram we are mostly rolled out. How are things looking in the last week

from containerregistry.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.