Skip to content

Commit c0e05b7

Browse files
committed
[SPARK-34019][WEBUI] Keep same quantiles about task summary about Web UI and restful API
1 parent e279ed3 commit c0e05b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/status/api/v1/StagesResource.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private[v1] class StagesResource extends BaseAppResource {
7474
def taskSummary(
7575
@PathParam("stageId") stageId: Int,
7676
@PathParam("stageAttemptId") stageAttemptId: Int,
77-
@DefaultValue("0.05,0.25,0.5,0.75,0.95") @QueryParam("quantiles") quantileString: String)
77+
@DefaultValue("0,0.25,0.5,0.75,1.0") @QueryParam("quantiles") quantileString: String)
7878
: TaskMetricDistributions = withUI { ui =>
7979
val quantiles = quantileString.split(",").map { s =>
8080
try {

0 commit comments

Comments
 (0)