[GitHub] [flink] zuston commented on a change in pull request #18087: [FLINK-25268] Support task manager node-label in Yarn deployment

2021-12-17 Thread GitBox


zuston commented on a change in pull request #18087:
URL: https://github.com/apache/flink/pull/18087#discussion_r771208187



##
File path: 
flink-yarn/src/test/java/org/apache/flink/yarn/ContainerRequestReflectorTest.java
##
@@ -0,0 +1,173 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.yarn;
+
+import org.apache.flink.runtime.util.HadoopUtils;
+import org.apache.flink.util.TestLogger;
+
+import org.apache.hadoop.yarn.api.records.Priority;
+import org.apache.hadoop.yarn.api.records.Resource;
+import org.apache.hadoop.yarn.client.api.AMRMClient;
+import org.junit.Test;
+
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assume.assumeTrue;
+
+/** Tests for {@link ContainerRequestReflector}. */
+public class ContainerRequestReflectorTest extends TestLogger {
+
+@Test
+public void testGetContainerRequestIfConstructorPresent() {
+final ContainerRequestReflector containerRequestReflector =
+new 
ContainerRequestReflector(ContainerRequestWithConstructor.class);
+Resource resource = Resource.newInstance(100, 1);
+Priority priority = Priority.newInstance(1);
+
+AMRMClient.ContainerRequest containerRequest =
+containerRequestReflector.getContainerRequest(resource, 
priority, "GPU");
+assertTrue(containerRequest instanceof 
ContainerRequestWithConstructor);

Review comment:
   I think the assertion is necessary that when if no node-label specified, 
the method of `getContainerRequest` in test case will return Hadoop original 
`ContainerRequest` object instead of `ContainerRequestWithConstructor` object.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [flink] zuston commented on a change in pull request #18087: [FLINK-25268] Support task manager node-label in Yarn deployment

2021-12-17 Thread GitBox


zuston commented on a change in pull request #18087:
URL: https://github.com/apache/flink/pull/18087#discussion_r771206220



##
File path: 
flink-yarn/src/test/java/org/apache/flink/yarn/ContainerRequestReflectorTest.java
##
@@ -0,0 +1,173 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.yarn;
+
+import org.apache.flink.runtime.util.HadoopUtils;
+import org.apache.flink.util.TestLogger;
+
+import org.apache.hadoop.yarn.api.records.Priority;
+import org.apache.hadoop.yarn.api.records.Resource;
+import org.apache.hadoop.yarn.client.api.AMRMClient;
+import org.junit.Test;
+
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assume.assumeTrue;
+
+/** Tests for {@link ContainerRequestReflector}. */
+public class ContainerRequestReflectorTest extends TestLogger {
+
+@Test
+public void testGetContainerRequestIfConstructorPresent() {
+final ContainerRequestReflector containerRequestReflector =
+new 
ContainerRequestReflector(ContainerRequestWithConstructor.class);
+Resource resource = Resource.newInstance(100, 1);
+Priority priority = Priority.newInstance(1);
+
+AMRMClient.ContainerRequest containerRequest =
+containerRequestReflector.getContainerRequest(resource, 
priority, "GPU");
+assertTrue(containerRequest instanceof 
ContainerRequestWithConstructor);
+ContainerRequestWithConstructor containerRequestWithConstructor =
+(ContainerRequestWithConstructor) containerRequest;
+assertEquals("GPU", 
containerRequestWithConstructor.getNodeLabelsExpression());
+
+containerRequest = 
containerRequestReflector.getContainerRequest(resource, priority, null);
+assertTrue(containerRequest instanceof AMRMClient.ContainerRequest);
+assertFalse(containerRequest instanceof 
ContainerRequestWithConstructor);

Review comment:
   There is no `getNodeLabelsExpression` method in `containerRequest` 
object.

##
File path: 
flink-yarn/src/test/java/org/apache/flink/yarn/ContainerRequestReflectorTest.java
##
@@ -0,0 +1,173 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.yarn;
+
+import org.apache.flink.runtime.util.HadoopUtils;
+import org.apache.flink.util.TestLogger;
+
+import org.apache.hadoop.yarn.api.records.Priority;
+import org.apache.hadoop.yarn.api.records.Resource;
+import org.apache.hadoop.yarn.client.api.AMRMClient;
+import org.junit.Test;
+
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assume.assumeTrue;
+
+/** Tests for {@link ContainerRequestReflector}. */
+public class ContainerRequestReflectorTest extends TestLogger {
+
+@Test
+public void testGetContainerRequestIfConstructorPresent() {
+final ContainerRequestReflector containerRequestReflector =
+new 
ContainerRequestReflector(ContainerRequestWithConstructor.class);
+Resource resource = 

[GitHub] [flink] zuston commented on a change in pull request #18087: [FLINK-25268] Support task manager node-label in Yarn deployment

2021-12-16 Thread GitBox


zuston commented on a change in pull request #18087:
URL: https://github.com/apache/flink/pull/18087#discussion_r771131336



##
File path: 
flink-yarn/src/main/java/org/apache/flink/yarn/YarnResourceManagerDriver.java
##
@@ -550,7 +559,33 @@ private FinalApplicationStatus 
getYarnStatus(ApplicationStatus status) {
 @Nonnull
 @VisibleForTesting
 static AMRMClient.ContainerRequest getContainerRequest(
-Resource containerResource, Priority priority) {
+Resource containerResource, Priority priority, String nodeLabel) {

Review comment:
   Removed




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org