YARN-10701. The yarn.resource-types should support multi types without trimmed. Contributed by Qi Zhu.

This commit is contained in:
Eric Badger 2021-03-18 19:36:50 +00:00
parent 181b9ddc51
commit 3d4ea4b336
2 changed files with 3 additions and 2 deletions

View File

@ -251,7 +251,8 @@ public static Resource fetchMaximumAllocationFromConfig(Configuration conf) {
private static Map<String, ResourceInformation> getResourceInformationMapFromConfig(
Configuration conf) {
Map<String, ResourceInformation> resourceInformationMap = new HashMap<>();
String[] resourceNames = conf.getStrings(YarnConfiguration.RESOURCE_TYPES);
String[] resourceNames =
conf.getTrimmedStrings(YarnConfiguration.RESOURCE_TYPES);
if (resourceNames != null && resourceNames.length != 0) {
for (String resourceName : resourceNames) {

View File

@ -17,6 +17,6 @@
<configuration>
<property>
<name>yarn.resource-types</name>
<value>yarn.io/gpu</value>
<value>yarn.io/gpu, yarn.io/fpga</value>
</property>
</configuration>