如何使用 python SDK 从 Azure Batch 计算节点检索标准输出/stderr.txt 文件?

How to retrieve stdout / stderr.txt files from Azure Batch compute nodes using python SDK?

Batch 的 .NET 文档包括一种从池中的节点检索文件的方法:link The corresponding classes in the python SDK 没有任何方法。任务失败时返回 stderr.txt 文件的最佳方法是什么?

我想你可以通过使用 python batch_client 来做到这一点,我在这里找到了一个实现:https://github.com/Azure/azure-sdk-for-python/blob/master/doc/batch.rst

# Download task output
with open('task_output.txt', 'w') as file_output:
        output = batch_client.file.get_from_task(
                'python_test_job',
                'python_task_1',
                'stdout.txt'
        )
        for data in output:
                file_output.write(data)