YARN-10701. The yarn.resource-types should support multi types without trimmed. Contributed by Qi Zhu.
This commit is contained in:
parent
a45d6437f5
commit
7d2eeaecc8
|
@ -251,7 +251,8 @@ public class ResourceUtils {
|
|||
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) {
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
<configuration>
|
||||
<property>
|
||||
<name>yarn.resource-types</name>
|
||||
<value>yarn.io/gpu,yarn.io/fpga,testType</value>
|
||||
<value>yarn.io/gpu, yarn.io/fpga, testType</value>
|
||||
</property>
|
||||
</configuration>
|
||||
</configuration>
|
||||
|
|
Loading…
Reference in New Issue