Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My Azure DevOps pipeline job is not working, I have the maximum number of requests reached but I am new

I am new to Azure and I would like to set up a app service along with a pipeline on devops for continious integration so I decided to try it out with the free plan.

I am trying to set up a pipeline on Azure DevOps with a repository from GitHub and I haven't changed anything in the azure-pipelines.yml so I can test it out if it works. When I run the pipeline and check the default jobs, they are in queue all the time and when I view the messages in the console it says the following: This agent request is not running because you have reached the maximum number of requests that can run for parallelism type 'Microsoft-Hosted Private'. Current position in queue: 1

I have tried Googling around but haven't found anything useful yet except that you have to send an email to a specific address ([email protected]). Now I have done this, but haven't received any answer yet. Is this the correct solution or am I doing something wrong?

like image 577
Juweyr Avatar asked Dec 22 '22 15:12

Juweyr


1 Answers

The root cause of the stuck issue is that the pipeline microsoft-hosted agent for public and private projects in the new organization has been restricted in the latest update.

For more detailed info, you could refer to these two docs: Private Project Pipelines, Public Project Pipelines.

In Release 183, the reasons for adding restrictions are as follows:

Over the past few months, the situation has gotten substantially worse, with a high percentage of new public projects in Azure DevOps being used for crypto mining and other activities we classify as abusive. In addition to taking an increasing amount of energy from the team, this puts our hosted agent pools under stress and degrades the experience of all our users – both open-source and paid.

Private Project:

You could send email to [email protected] in order to get your free tier.

  • Your name
  • Name of the Azure DevOps organization

Public Project:

You could send email to [email protected] in order to get your free tier.

  • Your name
  • Azure DevOps organization for which you are requesting the free grant
  • Links to the repositories that you plan to build
  • Brief description of your project

Since you have sent the email, you could wait for the response and get your free tier.

like image 53
Kevin Lu-MSFT Avatar answered Jan 13 '23 22:01

Kevin Lu-MSFT