YARN-6756. ContainerRequest#executionTypeRequest causes NPE. Contributed by Jian He
This commit is contained in:
parent
cf93d60d3f
commit
8201ed8009
@ -122,9 +122,10 @@ public static class ContainerRequest {
|
||||
private List<String> racks;
|
||||
private Priority priority;
|
||||
private long allocationRequestId;
|
||||
private boolean relaxLocality;
|
||||
private boolean relaxLocality = true;
|
||||
private String nodeLabelsExpression;
|
||||
private ExecutionTypeRequest executionTypeRequest;
|
||||
private ExecutionTypeRequest executionTypeRequest =
|
||||
ExecutionTypeRequest.newInstance();
|
||||
|
||||
/**
|
||||
* Instantiates a {@link ContainerRequest} with the given constraints and
|
||||
|
@ -51,8 +51,10 @@ public void testOpportunisticAndGuaranteedRequests() {
|
||||
|
||||
Resource capability = Resource.newInstance(1024, 1);
|
||||
ContainerRequest request =
|
||||
new ContainerRequest(capability, new String[] {"host1", "host2"},
|
||||
new String[] {"/rack2"}, Priority.newInstance(1));
|
||||
ContainerRequest.newBuilder().capability(capability)
|
||||
.nodes(new String[] { "host1", "host2" })
|
||||
.racks(new String[] { "/rack2" }).priority(Priority.newInstance(1))
|
||||
.build();
|
||||
client.addContainerRequest(request);
|
||||
verifyResourceRequest(client, request, "host1", true);
|
||||
verifyResourceRequest(client, request, "host2", true);
|
||||
|
Loading…
Reference in New Issue
Block a user