Community Articles

Find and share helpful community-sourced technical articles.
Announcements
Celebrating as our community reaches 100,000 members! Thank you!
Labels (3)
avatar
Contributor

This is due to a setting in yarn-site.xml:yarn.resourcemanager.fs.state-store.retry-policy-spec

Here is an example:

yarn.resourcemanager.fs.state-store.retry-policy-spec: 2000,500

It is specified in pairs of sleep-time and number-of-retries

This will mean that Hive Client will try connecting to nn1 for 500 times at an interval of 2000 Milliseconds.

Contingent on the fact that it could not connect to nn1 for 500 times at an interval of 2000 Milliseconds, it will then try connecting to nn2.

Resolution/Workaround: Lower the value of yarn.resourcemanager.fs.state-store.retry-policy-spec to 1000,10.

1,611 Views