Member since
09-01-2016
52
Posts
13
Kudos Received
2
Solutions
04-26-2024
07:12 AM
2 Kudos
if you want to force cdp onto rocky8: echo "ID_LIKE=\"Red Hat Enterprise Linux release 8.7 (Ootpa)\"" >> /etc/rocky-release this fixes install-agents hang echo "ID=\"rhel\"" >> /usr/lib/os-release this fixes install-parcels hang removing this ID var from os-release after deployment will cause hadoop to fail restart
... View more
01-14-2019
08:37 PM
1 Kudo
@Fernando Lopez Bello Based on the above configuration file for queue Zeppelin although user A submits a job first utilizes all the resources as the Queue's minimum-user-limit-percent is set to 20 the queue resources will be shared among subsequent users below is the link which explains with an example. https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.5/bk_yarn-resource-management/content/setting_user_limits.html But if you don't want all the resources to shared by user A even if there no other users then you can use user-limit-factor below is the link to a nice article about it. I can see user limit factor is 3 for Zeppelin Queue which means each user can utilize 3 times of queue capacity if resources are available & elasticity permits. https://community.hortonworks.com/content/supportkb/49640/what-does-the-user-limit-factor-do-when-used-in-ya.html In a nutshell minimum-user-limit-percent is a soft limit & user-limit-factor is a hard limit.
... View more