你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzBatchTaskSlotCount
获取指定作业的任务槽计数。
语法
Get-AzBatchTaskSlotCount
[-JobId] <String>
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzBatchTaskSlotCount
[[-Job] <PSCloudJob>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzBatchTaskSlotCount cmdlet 获取 Batch 作业的 Azure Batch 任务槽计数。 通过 JobId 参数或 Job 参数指定作业 。 任务槽计数通过活动、正在运行或已完成的任务状态以及任务成功或失败的槽数来提供槽计数。 准备状态中的任务的槽数计为正在运行。 如果 validationStatus 未得到验证,则 Batch 服务无法根据列表任务 API 中报告的任务状态检查状态计数。 如果作业包含超过 200,000 个任务,则 validationStatus 可能不受验证。
示例
示例 1:按 ID 获取任务计数
Get-AzBatchTaskSlotCount -JobId "Job01" -BatchContext $Context
Active : 1
Completed : 0
Failed : 0
Running : 1
Succeeded : 5
ValidationStatus : Validated
此命令获取作业 Job01 的任务计数。 使用 Get-AzBatchAccountKey cmdlet 将上下文分配给$Context变量。
参数
-BatchContext
与 Batch 服务交互时要使用的 BatchAccountContext 实例。 如果使用 Get-AzBatchAccount cmdlet 获取 BatchAccountContext,Microsoft 则在与 Batch 服务交互时将使用 entra 身份验证。 若要改用共享密钥身份验证,请使用 Get-AzBatchAccountKeys cmdlet 获取包含其访问密钥的 BatchAccountContext 对象。 使用共享密钥身份验证时,默认使用主访问密钥。 若要更改要使用的密钥,请设置 BatchAccountContext.KeyInUse 属性。
类型: | BatchAccountContext |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Job
指定包含此 cmdlet 获取的任务的作业。 若要获取 PSCloudJob 对象,请使用 Get-AzBatchJob cmdlet。
类型: | PSCloudJob |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-JobId
要为其获取任务槽计数的作业的 ID。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |