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

    https://github.com/apache/spark/pull/21567#discussion_r196432597
  
    --- Diff: core/src/main/scala/org/apache/spark/executor/Executor.scala ---
    @@ -613,7 +614,7 @@ private[spark] class Executor(
         private[this] val taskId: Long = taskRunner.taskId
     
         private[this] val killPollingIntervalMs: Long =
    -      conf.getTimeAsMs("spark.task.reaper.pollingInterval", "10s")
    +      conf.getTimeAsSeconds("spark.task.reaper.pollingInterval", 
"10s").seconds.toMillis
    --- End diff --
    
    Actually I believe this is change things from right to wrong. If you want 
to use a second value then you shall use sth like `1s`.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to