Skip to content
Open
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
2 changes: 1 addition & 1 deletion be/src/pipeline/exec/file_scan_operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void FileScanLocalState::set_scan_ranges(RuntimeState* state,
// Therefore, the number of scanners only needs to match "max_scanners_concurrency"
// to ensure full-speed execution.
// For 32 core node, the default "max_scanners_concurrency" should be 16
max_scanners = std::min(max_scanners, max_scanners_concurrency(state));
//max_scanners = std::min(max_scanners, max_scanners_concurrency(state));
return max_scanners;
};

Expand Down