BePPPower commented on code in PR #21911: URL: https://github.com/apache/doris/pull/21911#discussion_r1267601629
########## fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java: ########## @@ -58,15 +58,30 @@ // BY BROKER 'broker_name' [( $broker_attrs)] public class ExportStmt extends StatementBase { private static final Logger LOG = LogManager.getLogger(ExportStmt.class); - - public static final String TABLET_NUMBER_PER_TASK_PROP = "tablet_num_per_task"; + public static final String PARALLEL_NUMBER = "parallel_num"; Review Comment: done ########## fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java: ########## @@ -58,15 +58,30 @@ // BY BROKER 'broker_name' [( $broker_attrs)] public class ExportStmt extends StatementBase { private static final Logger LOG = LogManager.getLogger(ExportStmt.class); - - public static final String TABLET_NUMBER_PER_TASK_PROP = "tablet_num_per_task"; + public static final String PARALLEL_NUMBER = "parallel_num"; public static final String LABEL = "label"; private static final String DEFAULT_COLUMN_SEPARATOR = "\t"; private static final String DEFAULT_LINE_DELIMITER = "\n"; private static final String DEFAULT_COLUMNS = ""; + private static final String DEFAULT_PARALLEL_NUMBER = "1"; + + private static final ImmutableSet<String> PROPERTIES_SET = new ImmutableSet.Builder<String>() Review Comment: done -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org