aboutsummaryrefslogtreecommitdiff
path: root/sql/hive-thriftserver/src/main
diff options
context:
space:
mode:
authorForest Fang <forest.fang@outlook.com>2015-11-24 09:03:32 +0000
committerSean Owen <sowen@cloudera.com>2015-11-24 09:03:32 +0000
commit800bd799acf7f10a469d8d6537279953129eb2c6 (patch)
treea6ea4e874baac0955b67ec26155f26e1d1a3b94e /sql/hive-thriftserver/src/main
parent12eea834d7382fbaa9c92182b682b8724049d7c1 (diff)
downloadspark-800bd799acf7f10a469d8d6537279953129eb2c6.tar.gz
spark-800bd799acf7f10a469d8d6537279953129eb2c6.tar.bz2
spark-800bd799acf7f10a469d8d6537279953129eb2c6.zip
[SPARK-11906][WEB UI] Speculation Tasks Cause ProgressBar UI Overflow
When there are speculative tasks in the stage, running progress bar could overflow and goes hidden on a new line: ![image](https://cloud.githubusercontent.com/assets/4317392/11326841/5fd3482e-9142-11e5-8ca5-cb2f0c0c8964.png) 3 completed / 2 running (including 1 speculative) out of 4 total tasks This is a simple fix by capping the started tasks at `total - completed` tasks ![image](https://cloud.githubusercontent.com/assets/4317392/11326842/6bb67260-9142-11e5-90f0-37f9174878ec.png) I should note my preferred way to fix it is via css style ```css .progress { display: flex; } ``` which shifts the correction burden from driver to web browser. However I couldn't get selenium test to measure the position/dimension of the progress bar correctly to get this unit tested. It also has the side effect that the width will be calibrated so the running occupies 2 / 5 instead of 1 / 4. ![image](https://cloud.githubusercontent.com/assets/4317392/11326848/7b03e9f0-9142-11e5-89ad-bd99cb0647cf.png) All in all, since this cosmetic bug is minor enough, I suppose the original simple fix should be good enough. Author: Forest Fang <forest.fang@outlook.com> Closes #9896 from saurfang/progressbar.
Diffstat (limited to 'sql/hive-thriftserver/src/main')
0 files changed, 0 insertions, 0 deletions