Uh oh!
There was an error while loading. Please reload this page.
[SPARK-28599][SQL] Fix Execution Time and Duration column sorting for ThriftServerSessionPage - #25892
[SPARK-28599][SQL] Fix Execution Time and Duration column sorting for ThriftServerSessionPage#25892wangyum wants to merge 1 commit into
Execution Time and Duration column sorting for ThriftServerSessionPage#25892Conversation
wangyum
commented
Sep 22, 2019
cc @amanomer |
amanomer
commented
Sep 22, 2019
Looks good. Nice catch @wangyum . |
SparkQA
commented
Sep 22, 2019
Test build #111154 has finished for PR 25892 at commit
|
I would like to take this in branch-2.4 by #25882. |
dongjoon-hyun
commented
Sep 22, 2019
BTW, @wangyum . |
amanomer
commented
Sep 22, 2019
Ok. I have created another PR #25893 to back-port this to branch-2.4. |
dongjoon-hyun
commented
Sep 22, 2019
Hi, @wangyum . |
dongjoon-hyun
commented
Sep 22, 2019
In addition, this PR description is wrong. This is UI PR and that's the reason why you attach the screenshot. Could you fix the PR description?
|
Execution Time and Duration columns for ThriftServerSessionPageExecution Time and Duration column sorting for ThriftServerSessionPagedongjoon-hyun
commented
Sep 22, 2019
Merged to master. |
dongjoon-hyun
commented
Sep 22, 2019
I changed SPARK-28599 from |
… for ThriftServerSessionPage This PR add support sorting `Execution Time` and `Duration` columns for `ThriftServerSessionPage`. Previously, it's not sorted correctly. Yes. Manually do the following and test sorting on those columns in the Spark Thrift Server Session Page. ``` $ sbin/start-thriftserver.sh $ bin/beeline -u jdbc:hive2://localhost:10000 0: jdbc:hive2://localhost:10000> create table t(a int); +---------+--+ | Result | +---------+--+ +---------+--+ No rows selected (0.521 seconds) 0: jdbc:hive2://localhost:10000> select * from t; +----+--+ | a | +----+--+ +----+--+ No rows selected (0.772 seconds) 0: jdbc:hive2://localhost:10000> show databases; +---------------+--+ | databaseName | +---------------+--+ | default | +---------------+--+ 1 row selected (0.249 seconds) ``` **Sorted by `Execution Time` column**:  **Sorted by `Duration` column**:  Closesapache#25892 from wangyum/SPARK-28599. Authored-by: Yuming Wang <yumwang@ebay.com> Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
What changes were proposed in this pull request?
This PR add support sorting
Execution TimeandDurationcolumns forThriftServerSessionPage.Why are the changes needed?
Previously, it's not sorted correctly.
Does this PR introduce any user-facing change?
Yes.
How was this patch tested?
Manually do the following and test sorting on those columns in the Spark Thrift Server Session Page.
Sorted by

Execution Timecolumn:Sorted by

Durationcolumn: