This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 52ae5202c8e branch-3.1: [chore](logs)Print logs of Export split tablet
IDs #55170 (#55646)
52ae5202c8e is described below
commit 52ae5202c8ee0eee4c81d4429c3b834003ec27af
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Sep 4 14:36:33 2025 +0800
branch-3.1: [chore](logs)Print logs of Export split tablet IDs #55170
(#55646)
Cherry-picked from #55170
Co-authored-by: Calvin Kirs <[email protected]>
---
fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
b/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
index be77d591ab8..9df921b06fe 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
@@ -306,6 +306,7 @@ public class ExportJob implements Writable {
List<List<Long>> tabletsListPerParallel = splitTablets();
// Each Outfile clause responsible for
MAXIMUM_TABLETS_OF_OUTFILE_IN_EXPORT tablets
+ int index = 0;
for (List<Long> tabletsList : tabletsListPerParallel) {
// generate LogicalPlan
LogicalPlan plan = generateOneLogicalPlan(qualifiedTableName,
tabletsList,
@@ -313,6 +314,10 @@ public class ExportJob implements Writable {
// generate LogicalPlanAdapter
StatementBase statementBase = generateLogicalPlanAdapter(plan);
selectStmtPerParallel.add(Optional.of(statementBase));
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Export Job [{}]: parallelism {} tablets: {}", id,
index, tabletsList);
+ }
+ index++;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]