English 中文(简体)
D. 寻找工作
原标题:Queue jobs stuck in Azure Devops pipelines

在我的DevOps项目中,我面临着代理人集中工作的问题。

我说有2个工作,还有70个工作点。

“entergraph

当我点击Capline代理公司时,它就看着所有的工作。 所有工作都出现在白色一科,这意味着实际上没有任何工作。

“entergraph

我试图取消和删除所有这些工作,现在,当我点击其中任何一个工作时,我就表明了以下信息:

“enterography

我通过改进管道中的用户许可来尝试,管理安全选择,拆卸储管道代理人库的代理人,删除粪池并重新填满。 它没有任何变化。

I ve also seen that some people says that it could be a pipelines delay bug from Azure DevOps, and some of this people get solved this bug by itself after some hours/days, but I need to solve it urgent.

Any suggestion will be appreciated

问题回答

I ve also seen that some people says that it could be a pipelines delay bug from Azure DevOps, and some of this people get solved this bug by itself after some hours/days, but I need to solve it urgent.

是的,可以在数小时/日之后收回。 但是,如果现在继续存在,请尝试以下选择:

  1. purchase another parallel job, after it works(pipeline can grant the agent), delete the job purchased(link here).

  2. 如果做不到一定的工作,则使用来授予集合地位:

回复的<编码>规定国家即为<代码> 如果该编码not,则通过PowerShell script(向贵方出售 pool和 agent):

Param(
   [string]$organization = "yourorgname",
   [string]$token = "PAT"  
)

$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $user,$token)))

$url="https://dev.azure.com/$organization/_apis/distributedtask/pools/9/agents/8?api-version=5.1"

$body = @"
{
    "Id": 8,
    "ProvisioningState": "Deallocated"
}
"@

Invoke-RestMethod -Uri $url -Headers @{Authorization=("Basic {0}" -f $base64AuthInfo)} -Body $body -ContentType "application/json" -Method PATCH

如果问题持续存在,也可由<代码>造成。 紧急集合服务(9) 身份从<条码>中删除。 请注意,这里的身份号码(9)可能与贵组织不同。 请查看link

www.un.org/Depts/DGACM/index_spanish.htm 如果你需要紧急解决,第一种办法是通过“门户”提出支持请求。 https://azure.microsoft.com/en-us/support/plans/“rel=“nofollow noreferer” 与您的订阅相关的支持计划? Click ,以提出支持请求。 请分享铺设管道,并在支助请求说明中公布细节。





相关问题
Windows Azure WorkerRole response

I am working on an Azure demo to run Powershell in a worker role. In my web role I add the name of the Powershell script which is to be run to a CloudQueue object. I can print the script output to ...

Windows Azure WebRole stuck in a deployment loop

I ve been struggling with this one for a couple of days now. My current Windows Azure WebRole is stuck in a loop where the status keeps changing between Initializing, Busy, Stopping and Stopped. It ...

Getting a token for Windows Azure

We are looking at Windows Azure, but getting a token appears to be hard now, at least that s what I m seeing in web searches. Anyone tried it or know how to accelerate that process? Any idea how long ...

Developing Azure .Net 4.0 Applications

Presently .Net 4.0 is not supported on Azure. This thread indicates that you will not be able to use .Net 4.0 with VS 2010 until it is supported in the cloud. http://social.msdn.microsoft.com I d ...

.NET 4.0 on Windows Azure?

My google-fu is failing me on this one. As a possible solution to Unit Testing .NET 3.5 projects using MStest in VS2010 (but I ve put this in a seperate question because it s kind of unrelated): Is ...

热门标签