- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Is it possible to reserve whole nodes for exclusive application usage
- Labels:
-
Apache YARN
Created on ‎04-25-2019 10:41 AM - edited ‎09-16-2022 07:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I double that, but I check here anyway. Our system is on CDH-5.15.2. The resource manager and job scheduler is YARN:
$ yarn version
Hadoop 2.6.0-cdh5.15.2
Subversion http://github.com/cloudera/hadoop -r c97bcbf0cba923467d45f5519b1953f436c64f12
Compiled by jenkins on 2018-11-13T13:53Z
Compiled with protoc 2.5.0
From source with checksum 9d2d5b887383c7d4b811372f867c6440
This command was run using /opt/cloudera/parcels/CDH-5.15.2-1.cdh5.15.2.p0.3/jars/hadoop-common-2.6.0-cdh5.15.2.jar
There are two users, they want isolated environment to run some experiments. I wonder if we can reserve two nodes for their use.
Any suggestions and discussion are very welcome.
Best Regards,
Vincent
Created ‎04-28-2019 12:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You may can achive the goal with YARN node label feature. See the detailed explaination on the following Hortonworks post:
https://community.hortonworks.com/articles/72450/node-labels-configuration-on-yarn.html
Current Cloudera CDH distribution does not officially support Node Label, we are working on release a uniform version of CDH + HDP. We will have a new Cloudera Data Platform (CDP) release later this year. If you are our subscruption customer, please feel free to contact cloudera support to enqury the state of this feature, also the state of the new CDP release.
Thanks.
Created ‎04-28-2019 12:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You may can achive the goal with YARN node label feature. See the detailed explaination on the following Hortonworks post:
https://community.hortonworks.com/articles/72450/node-labels-configuration-on-yarn.html
Current Cloudera CDH distribution does not officially support Node Label, we are working on release a uniform version of CDH + HDP. We will have a new Cloudera Data Platform (CDP) release later this year. If you are our subscruption customer, please feel free to contact cloudera support to enqury the state of this feature, also the state of the new CDP release.
Thanks.
Created ‎04-29-2019 07:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It's very nice to know the upcoming updates. So with the feature in place, we would be able to assign some nodes exclusively to certain users (e.g. user userA, application appX) for their processing requirements.
The question following naturally is about data storage locations: can other users' applications still read and write to the assigned nodes? will appX output files be written to the assigned nodes only, will appX be allowed to read input file blocks from all nodes in the cluster? This is too much I know.
Thanks a lot!
Created ‎05-07-2019 09:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you mean "can other apps use HDFS?" then the answer is yes, as HDFS is an independent system unrelated to YARN and has its own access and control mechanisms not governed by a YARN scheduler.
If you mean "can other apps use the scratch space on NM nodes" then the answer is no, as only local containers get to use that.
If you're looking to strictly split both storage and compute, as opposed to just some form of compute, then it may be better to divide up the cluster entirely.
