[
https://issues.apache.org/jira/browse/SPARK-15235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Reynold Xin resolved SPARK-15235.
---------------------------------
Resolution: Fixed
Assignee: Kousuke Saruta
Fix Version/s: 2.0.0
> Corresponding row cannot be highlighted even though cursor is on the job on
> Web UI's timeline
> ---------------------------------------------------------------------------------------------
>
> Key: SPARK-15235
> URL: https://issues.apache.org/jira/browse/SPARK-15235
> Project: Spark
> Issue Type: Bug
> Components: Web UI
> Affects Versions: 1.6.1, 2.0.0
> Reporter: Kousuke Saruta
> Assignee: Kousuke Saruta
> Priority: Trivial
> Fix For: 2.0.0
>
>
> To extract job descriptions and stage name, there are following regular
> expressions in timeline-view.js
> {code}
> var jobIdText =
> $($(baseElem).find(".application-timeline-content")[0]).text();
> var jobId = jobIdText.match("\\(Job (\\d+)\\)")[1];
> ...
> var stageIdText = $($(baseElem).find(".job-timeline-content")[0]).text();
> var stageIdAndAttempt = stageIdText.match("\\(Stage
> (\\d+\\.\\d+)\\)")[1].split(".");
> {code}
> But if job descriptions include patterns like "(Job x)" or stage names
> include patterns like "(Stage x.y)", the regular expressions cannot be match
> as we expected, ending up with corresponding row cannot be highlighted even
> though we move the cursor onto the job on Web UI's timeline.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]