Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

In HDP 2.3.2 tez.container.max.java.heap.fraction is an optional property to set; what are the ramifications for not setting this property?

avatar
Expert Contributor
 
1 ACCEPTED SOLUTION

avatar

May I ask which document are you referencing to?

If my IDE services me correctly, this parameter is used only in two places (TezClientUtils and AMContainerHelpers), and if you don't set, it uses the default value 0.8 all the time.

View solution in original post

6 REPLIES 6

avatar

May I ask which document are you referencing to?

If my IDE services me correctly, this parameter is used only in two places (TezClientUtils and AMContainerHelpers), and if you don't set, it uses the default value 0.8 all the time.

avatar

I hope I'm not misunderstanding the question, but if you didn't set, 0.8 is the default value:

public static final double TEZ_CONTAINER_MAX_JAVA_HEAP_FRACTION_DEFAULT = 0.8;

avatar
Expert Contributor

Yes, I saw that in the documentation. But from reading the documentation from the Apache site, it leads one to believe that you can opt to not set this property. Is that correct?

avatar
Expert Contributor

avatar

If not set, 0.8 will be / should be used.

avatar
Expert Contributor

Thanks @Hajime!