Github user jerryshao commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16810#discussion_r100490035
  
    --- Diff: 
resource-managers/yarn/src/main/scala/org/apache/spark/deploy/yarn/Client.scala 
---
    @@ -253,53 +233,24 @@ private[spark] class Client(
     
         sparkConf.get(AM_NODE_LABEL_EXPRESSION) match {
           case Some(expr) =>
    -        try {
    -          val amRequest = Records.newRecord(classOf[ResourceRequest])
    -          amRequest.setResourceName(ResourceRequest.ANY)
    -          amRequest.setPriority(Priority.newInstance(0))
    -          amRequest.setCapability(capability)
    -          amRequest.setNumContainers(1)
    -          val method = 
amRequest.getClass.getMethod("setNodeLabelExpression", classOf[String])
    -          method.invoke(amRequest, expr)
    -
    -          val setResourceRequestMethod =
    -            appContext.getClass.getMethod("setAMContainerResourceRequest", 
classOf[ResourceRequest])
    -          setResourceRequestMethod.invoke(appContext, amRequest)
    -        } catch {
    -          case e: NoSuchMethodException =>
    -            logWarning(s"Ignoring ${AM_NODE_LABEL_EXPRESSION.key} because 
the version " +
    -              "of YARN does not support it")
    -            appContext.setResource(capability)
    -        }
    +        val amRequest = Records.newRecord(classOf[ResourceRequest])
    +        amRequest.setResourceName(ResourceRequest.ANY)
    +        amRequest.setPriority(Priority.newInstance(0))
    +        amRequest.setCapability(capability)
    +        amRequest.setNumContainers(1)
    +        amRequest.setNodeLabelExpression(expr)
    +        appContext.setAMContainerResourceRequest(amRequest)
           case None =>
             appContext.setResource(capability)
         }
     
         sparkConf.get(ROLLED_LOG_INCLUDE_PATTERN).foreach { includePattern =>
    -      try {
    -        val logAggregationContext = Records.newRecord(
    -          
Utils.classForName("org.apache.hadoop.yarn.api.records.LogAggregationContext"))
    -          .asInstanceOf[Object]
    -
    -        val setRolledLogsIncludePatternMethod =
    -          
logAggregationContext.getClass.getMethod("setRolledLogsIncludePattern", 
classOf[String])
    -        setRolledLogsIncludePatternMethod.invoke(logAggregationContext, 
includePattern)
    -
    -        sparkConf.get(ROLLED_LOG_EXCLUDE_PATTERN).foreach { excludePattern 
=>
    -          val setRolledLogsExcludePatternMethod =
    -            
logAggregationContext.getClass.getMethod("setRolledLogsExcludePattern", 
classOf[String])
    -          setRolledLogsExcludePatternMethod.invoke(logAggregationContext, 
excludePattern)
    -        }
    -
    -        val setLogAggregationContextMethod =
    -          appContext.getClass.getMethod("setLogAggregationContext",
    -            
Utils.classForName("org.apache.hadoop.yarn.api.records.LogAggregationContext"))
    -        setLogAggregationContextMethod.invoke(appContext, 
logAggregationContext)
    -      } catch {
    -        case NonFatal(e) =>
    -          logWarning(s"Ignoring ${ROLLED_LOG_INCLUDE_PATTERN.key} because 
the version of YARN " +
    -            s"does not support it", e)
    +      val logAggregationContext = 
Records.newRecord(classOf[LogAggregationContext])
    +      logAggregationContext.setRolledLogsIncludePattern(includePattern)
    +      sparkConf.get(ROLLED_LOG_EXCLUDE_PATTERN).foreach { excludePattern =>
    +        logAggregationContext.setRolledLogsExcludePattern(excludePattern)
    --- End diff --
    
    The API is existed in Hadoop 2.6.1, but unfortunately renamed in Hadoop 
2.6.4, we still needs to reflection to handle this issue.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to