This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 2c2d56e8a0 [Feature](broker-load) Add priority info for ShowLoadStmt. 
(#20984)
2c2d56e8a0 is described below

commit 2c2d56e8a044def3d1ca70d39d20db18acdc6b8c
Author: Xiangyu Wang <[email protected]>
AuthorDate: Sun Jun 25 22:11:21 2023 +0800

    [Feature](broker-load) Add priority info for ShowLoadStmt. (#20984)
    
    Following pr #20628 , add priority information of the load job.
---
 fe/fe-core/src/main/java/org/apache/doris/load/loadv2/LoadJob.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/LoadJob.java 
b/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/LoadJob.java
index 18c881c558..6404fe8009 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/LoadJob.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/LoadJob.java
@@ -793,7 +793,7 @@ public abstract class LoadJob extends 
AbstractTxnStateChangeCallback implements
 
             // task info
             jobInfo.add("cluster:" + getResourceName() + "; timeout(s):" + 
getTimeout()
-                    + "; max_filter_ratio:" + getMaxFilterRatio());
+                    + "; max_filter_ratio:" + getMaxFilterRatio() + "; 
priority:" + getPriority());
             // error msg
             if (failMsg == null) {
                 jobInfo.add(FeConstants.null_string);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to