Are task logs deleted when the node is deleted due to autoscaling?

Juan Manuel Pérez [Modelical] 0 Reputation points
2024-07-16T09:52:11.57+00:00

Hello,

I am trying to access the logs (stdout.txt and stderr.txt) of the tasks run.

As soon as the task is completed I lose access to those files. Looking at the browser console, if I search a file in the path field I get a 404 error, NodeNotFound, The specified node does not exist.

Is it caused because the node is deleted when the task completes? Is there a way to retain those files after the node is deleted?

Azure Batch
Azure Batch
An Azure service that provides cloud-scale job scheduling and compute management.
331 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Prrudram-MSFT 24,661 Reputation points
    2024-07-19T10:03:24.4333333+00:00

    Hello @Juan Manuel Pérez [Modelical]

    That's right. When a node is removed from the pool, all of the files that are stored on the node are also removed. Because of this behavior, you should move the output of your task off of the node it's running on, and to a durable store before it completes. Similarly, if a task fails, you should move logs required to diagnose the failure to a durable store.

    Batch has integrated support for Azure Storage to upload data via OutputFiles, and with various shared file systems, or you can perform the upload yourself in your tasks.

    Regarding your question, you can save the log files by using Task output files. Task output files are a convenient way to save log files to Azure Storage. You can specify the output files in the task definition, and Batch will automatically upload the files to your storage account when the task completes.

    Reference:

    https://learn.microsoft.com/en-us/azure/batch/batch-task-output


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.