你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzBatchNodeFileContent
获取 Batch 节点文件。
语法
Get-AzBatchNodeFileContent
-JobId <String>
-TaskId <String>
[-Path] <String>
-DestinationPath <String>
[-ByteRangeStart <Int64>]
[-ByteRangeEnd <Int64>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzBatchNodeFileContent
-JobId <String>
-TaskId <String>
[-Path] <String>
-DestinationStream <Stream>
[-ByteRangeStart <Int64>]
[-ByteRangeEnd <Int64>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzBatchNodeFileContent
[-PoolId] <String>
[-ComputeNodeId] <String>
[-Path] <String>
-DestinationPath <String>
[-ByteRangeStart <Int64>]
[-ByteRangeEnd <Int64>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzBatchNodeFileContent
[-PoolId] <String>
[-ComputeNodeId] <String>
[-Path] <String>
-DestinationStream <Stream>
[-ByteRangeStart <Int64>]
[-ByteRangeEnd <Int64>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzBatchNodeFileContent
[[-InputObject] <PSNodeFile>]
-DestinationPath <String>
[-ByteRangeStart <Int64>]
[-ByteRangeEnd <Int64>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzBatchNodeFileContent
[[-InputObject] <PSNodeFile>]
-DestinationStream <Stream>
[-ByteRangeStart <Int64>]
[-ByteRangeEnd <Int64>]
-BatchContext <BatchAccountContext>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzBatchNodeFileContent cmdlet 获取 Azure Batch 节点文件,并将其保存为文件或流。
示例
示例 1:获取与任务关联的 Batch 节点文件并保存文件
Get-AzBatchNodeFileContent -JobId "Job01" -TaskId "Task01" -Path "StdOut.txt" -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
此命令获取名为StdOut.txt的节点文件,并将其保存到本地计算机上的 E:\PowerShell\StdOut.txt 文件路径。 StdOut.txt节点文件与 ID 为 JOB01 的作业 ID Task01 的任务相关联。 使用 Get-AzBatchAccountKey cmdlet 将上下文分配给$Context变量。
示例 2:获取 Batch 节点文件,并使用管道将其保存到指定的文件路径
Get-AzBatchNodeFile -JobId "Job02" -TaskId "Task02" -Path "StdErr.txt" -BatchContext $Context | Get-AzBatchNodeFileContent -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
此命令使用 Get-AzBatchNodeFile cmdlet 获取StdErr.txt命名的节点文件。 该命令使用管道运算符将该文件传递到当前 cmdlet。 当前 cmdlet 将该文件保存到本地计算机上的 E:\PowerShell\StdOut.txt 文件路径。 StdOut.txt节点文件与 ID 为 ID Job02 的作业具有 ID 任务的任务相关联。
示例 3:获取与任务关联的 Batch 节点文件并将其定向到流
$Stream = New-Object -TypeName "System.IO.MemoryStream"
Get-AzBatchNodeFileContent -JobId "Job03" -TaskId "Task11" -Path "StdOut.txt" -DestinationStream $Stream -BatchContext $Context
第一个命令使用 New-Object cmdlet 创建流,然后将其存储在$Stream变量中。 第二个命令从 ID Job03 的作业的 ID Task11 的任务中获取名为StdOut.txt的节点文件。 该命令将文件内容定向到$Stream中的流。
示例 4:从计算节点获取节点文件并将其保存
Get-AzBatchNodeFileContent -PoolId "Pool01" -ComputeNodeId "ComputeNode01" -Path "Startup\StdOut.txt" -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
此命令从具有 ID Pool01 的池中 ID ComputeNode01 的计算节点获取节点文件 Startup\StdOut.txt。 此命令将文件保存到本地计算机上的 E:\PowerShell\StdOut.txt文件路径。
示例 5:从计算节点获取节点文件,并使用管道保存它
Get-AzBatchNodeFile -PoolId "Pool01" -ComputeNodeId "ComputeNode01" -Path "Startup\StdOut.txt" -BatchContext $Context | Get-AzBatchNodeFileContent -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
此命令从 ID ComputeNode01 的计算节点中使用 Get-AzBatchNodeFile 获取节点文件 Startup\StdOut.txt。 计算节点位于 ID Pool01 的池中。 该命令将该节点文件传递到当前 cmdlet。 该 cmdlet 将文件保存到本地计算机上的 E:\PowerShell\StdOut.txt文件路径。
示例 6:从计算节点获取节点文件并将其定向到流
$Stream = New-Object -TypeName "System.IO.MemoryStream"
Get-AzBatchNodeFileContent -PoolId "Pool01" -ComputeNodeId "ComputeNode01" -Path "startup\stdout.txt" -DestinationStream $Stream -BatchContext $Context
第一个命令使用 New-Object cmdlet 创建流,然后将其存储在$Stream变量中。 第二个命令从具有 ID Pool01 的池中 ID ComputeNode01 的计算节点中获取名为StdOut.txt的节点文件。 该命令将文件内容定向到$Stream中的流。
参数
-BatchContext
指定 此 cmdlet 用于与 Batch 服务交互的 BatchAccountContext 实例。 如果使用 Get-AzBatchAccount cmdlet 获取 BatchAccountContext,Microsoft 则在与 Batch 服务交互时将使用 entra 身份验证。 若要改用共享密钥身份验证,请使用 Get-AzBatchAccountKey cmdlet 获取填充其访问密钥的 BatchAccountContext 对象。 使用共享密钥身份验证时,默认使用主访问密钥。 若要更改要使用的密钥,请设置 BatchAccountContext.KeyInUse 属性。
类型: | BatchAccountContext |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ByteRangeEnd
要下载的字节范围的末尾。
类型: | Nullable<T>[Int64] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ByteRangeStart
要下载的字节范围的开始。
类型: | Nullable<T>[Int64] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ComputeNodeId
指定包含此 cmdlet 返回的节点文件的计算节点的 ID。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DestinationPath
指定此 cmdlet 保存节点文件的文件路径。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DestinationStream
指定此 cmdlet 写入节点文件内容的流。 此 cmdlet 不会关闭或倒退此流。
类型: | Stream |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-InputObject
指定此 cmdlet 作为 PSNodeFile 对象获取的文件。 若要获取节点文件对象,请使用 Get-AzBatchNodeFile cmdlet。
类型: | PSNodeFile |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-JobId
指定包含目标任务的作业的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Path
要下载的节点文件的路径。
类型: | String |
别名: | Name |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PoolId
指定包含此 cmdlet 获取的节点文件的计算节点的池的 ID。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-TaskId
指定任务的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |