gpt4 book ai didi

azure - Azure Batch 中的任务失败和退出代码 -532462766

转载 作者:行者123 更新时间:2023-12-03 04:22:53 27 4
gpt4 key购买 nike

我正在尝试在 Azure Batch 中运行控制台应用程序。到目前为止,我已经创建了负责在 Azure Batch 中创建和运行作业和任务的客户端应用程序。我的 ClientApplication 成功创建了一个作业(作业中的一个任务),但是当上传到 AzureStorage 上的应用程序代码在 Azure 池中执行时,该任务失败并退出,退出代码为 -532462766。我找不到此退出代码的任何信息。请帮我解决这个问题。

这是我创建任务的代码及其配置

    private static async Task<List<CloudTask>> AddTasksAsync(BatchClient batchClient, string jobId)
{
Console.WriteLine("Adding {0} tasks to job [{1}]...", 1, jobId);

List<CloudTask> tasks = new List<CloudTask>();

string taskId = "topNtask";
string taskCommandLine = String.Format("cmd /c %AZ_BATCH_NODE_SHARED_DIR%\\SelfHostedWebAPI.exe {0} {1} {2}", 11109, "MSS_F_MST_______", "Normal");
//string taskCommandLine = String.Format("cmd /c %AZ_BATCH_NODE_SHARED_DIR%\\SelfHostedWebAPI.exe");

CloudTask task = new CloudTask(taskId, taskCommandLine);
tasks.Add(task);

await batchClient.JobOperations.AddTaskAsync(jobId, tasks);

return tasks;
}

以及来 self 的 Azure 门户的任务失败报告

enter image description here

最佳答案

-532462766对应的十六进制值为0xE0434352;有关此错误代码/异常的更多信息可以在 SO post 上找到。 。常见的罪魁祸首是缺少程序集(请参阅 Assembly Binding Log Viewer )。此外,Windows 事件查看器也许能够在您求助于 WinDbg 和 SOS 之前为您提供更多信息。

关于azure - Azure Batch 中的任务失败和退出代码 -532462766,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47028326/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com