Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.68 KB

empty-yarn-log.md

File metadata and controls

47 lines (38 loc) · 1.68 KB
title description keywords services documentationcenter author manager editor ms.topic ms.date ms.author
How can I download and read Yarn log from storage account directly? | Microsoft Docs
Use the Yarn FAQ for answers to common questions on Yarn on Azure HDInsight platform.
Azure HDInsight, Yarn, FAQ, troubleshooting guide, download logs, ADLS storage.
Azure HDInsight
na
zhaya
article
08/22/2019
zhaya

How can I download and read Yarn log from storage account directly?

Have you tried to download the log through Yarn API? This might help

Issue:

The logs found from storage account is not human-readable. The file parser doesn't work with java.io.IOException: Not a valid BCFile.

Mitigation Step:

This is because Yarn log is aggregated into IndexFile format, which is not supported by the file parser we have.

  • For WASB storage. From Ambari, change the config of yarn-site.xml.
yarn.log-aggregation.file-formats = IndexedFormat,TFile

You should see IndexedFormat,TFile as default. Remove IndexedFormat, leave TFile.

yarn.log-aggregation.file-formats = TFile

Restart all the affected services and now you should be able to get TFile logs from storage and read with the parser.

  • If you are using ADLS storage, there's issue for the TFile log. Please do the following
yarn.nodemanager.log-aggregation.compression-type = gz

You should see compression type set to gz by default. Please change the value to "none" to make it work.

yarn.nodemanager.log-aggregation.compression-type = none

By using IndexedFormant + none compression, you should be able to read the log file directly from storage account.