Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dev-support/bin/tez_run_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ cat <<EOF > "$HADOOP_HOME/etc/hadoop/yarn-site.xml"
<name>yarn.nodemanager.aux-services</name>
<value>mapreduce_shuffle</value>
</property>
<property>
<name>yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage</name>
<value>99.0</value>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By default the value is 90 as per, any particular reason to chase extra 9%
https://hadoop.apache.org/docs/r3.5.0/hadoop-yarn/hadoop-yarn-common/yarn-default.xml

@abstractdog abstractdog Aug 18, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, it's because I bump into it all the time: I believe other developers like me are also fine with spending most of their time with 90+ percent full disk without bumping into issues like this, 99% is the upper limit I consider serious (at that level, my laptop also starts to warn about disk space)

(bumping into it all the time, I mean: TEZ-4366, TEZ-4123)

</property>
</configuration>
EOF

Expand Down
Loading