yaooqinn commented on code in PR #55655:
URL: https://github.com/apache/spark/pull/55655#discussion_r3202222593
##########
sql/core/src/main/resources/org/apache/spark/sql/execution/ui/static/allexecutionspage.js:
##########
@@ -195,7 +195,13 @@ $(document).ready(function () {
data: "duration", name: "duration", title: "Duration",
render: function (data, type) {
if (type !== "display") return data;
- return formatDurationSql(data);
+ var formatted = formatDurationSql(data);
+ if (data > 600000) {
Review Comment:
I like the Pn idea, we may also consider setup proper floor thresholds to
avoid small queries > Pn to be false alerted, adding configuration here is a
bit overkilling to me.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]