Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteYue committed Apr 23, 2024
1 parent 6a7f90b commit 24f639b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions be/src/runtime/exec_env_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,11 @@ Status ExecEnv::_init(const std::vector<StorePath>& store_paths,
.set_max_queue_size(config::send_batch_thread_pool_queue_size)
.build(&_send_batch_thread_pool));

static_cast<void>(ThreadPoolBuilder("BufferedReaderPrefetchThreadPool")
.set_min_threads(config::buffered_reader_prefetch_thread_pool_min_thread_num)
.set_max_threads(config::buffered_reader_prefetch_thread_pool_max_thread_num)
.build(&_buffered_reader_prefetch_thread_pool));
static_cast<void>(
ThreadPoolBuilder("BufferedReaderPrefetchThreadPool")
.set_min_threads(config::buffered_reader_prefetch_thread_pool_min_thread_num)
.set_max_threads(config::buffered_reader_prefetch_thread_pool_max_thread_num)
.build(&_buffered_reader_prefetch_thread_pool));

static_cast<void>(ThreadPoolBuilder("SendTableStatsThreadPool")
.set_min_threads(8)
Expand Down

0 comments on commit 24f639b

Please sign in to comment.