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

    https://github.com/apache/spark/pull/7808#discussion_r36115208
  
    --- Diff: 
core/src/main/scala/org/apache/spark/ui/exec/ExecutorThreadDumpPage.scala ---
    @@ -49,11 +49,29 @@ private[ui] class ExecutorThreadDumpPage(parent: 
ExecutorsTab) extends WebUIPage
         val maybeThreadDump = sc.get.getExecutorThreadDump(executorId)
     
         val content = maybeThreadDump.map { threadDump =>
    -      val dumpRows = threadDump.map { thread =>
    +      val dumpRows = threadDump.sortWith {
    +        case (threadTrace1, threadTrace2) => {
    +          val v1 = if (threadTrace1.threadName.contains("Executor task 
launch")) 1 else 0
    +          val v2 = if (threadTrace2.threadName.contains("Executor task 
launch")) 1 else 0
    +          if (v1 == v2) {
    +            threadTrace1.threadName < threadTrace2.threadName
    --- End diff --
    
    Just tried this out locally and noticed that the capitalization of thread 
names can influence the ordering.  Can you add a `.toLower()` on the thread 
names here?


---
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