Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -780,8 +780,7 @@ public Map<String, TaskSchedulingInfo> scheduleTasks(TaskSchedulingContext conte
* If no specific tables are targeted (i.e., "schedule for every table"), the check iterates the full
* table list so that per-table opt-outs are still honored.
*/
@VisibleForTesting
boolean shouldUseConcurrentPath(TaskSchedulingContext context) {
protected boolean shouldUseConcurrentPath(TaskSchedulingContext context) {
Set<String> targetTables = context.getTablesToSchedule();
Set<String> targetDatabases = context.getDatabasesToSchedule();
Set<String> consolidatedTables = new HashSet<>();
Expand Down Expand Up @@ -814,8 +813,7 @@ boolean shouldUseConcurrentPath(TaskSchedulingContext context) {
* Resolves the effective concurrent-scheduling flag for a single table: table-level override if
* set, otherwise the cluster-level default.
*/
@VisibleForTesting
boolean resolveConcurrentScheduling(TableConfig tableConfig) {
protected boolean resolveConcurrentScheduling(TableConfig tableConfig) {
TableTaskConfig taskConfig = tableConfig.getTaskConfig();
if (taskConfig != null) {
Boolean tableFlag = taskConfig.getConcurrentSchedulingEnabled();
Expand Down
Loading