Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

yarn web ui is too slow

avatar

Yarn web ui ( Resource manager ui) is slow and it takes time to load the page. IS there any setting which needs to be tuned to make it faster?

1 ACCEPTED SOLUTION

avatar
Super Guru

@ARUN you can decrease the no of application display in yarn web ui controlled by yarn.resourcemanager.max-completed-applications parameters,ResourceManager will store by default 10000 completed applications in memory which could slow down UI

View solution in original post

4 REPLIES 4

avatar
Super Guru

@ARUN you can decrease the no of application display in yarn web ui controlled by yarn.resourcemanager.max-completed-applications parameters,ResourceManager will store by default 10000 completed applications in memory which could slow down UI

avatar

Thanks @Rajkumar Singh, if i reduce this parameter and if i want to retrieve history will it be possible. say for example if i have set this value to 1000, will it be possible for me to retrieve jobs more than 1000 if needed?

avatar
Super Guru

@ARUN yes you can still retrieve application stats from application timeline server(ATS)

avatar

one quick question @Rajkumar Singh, can this property be set in the advnaced yarn-site section in ambari

old
 <property>
      <name>yarn.resourcemanager.state-store.max-completed-applications</name>
      <value>${yarn.resourcemanager.max-completed-applications}</value>
    </property>
new
 <property>
      <name>yarn.resourcemanager.state-store.max-completed-applications</name>
      <value>1000</value>
    </property>