morningman commented on code in PR #20926: URL: https://github.com/apache/doris/pull/20926#discussion_r1243224061
########## be/src/service/doris_main.cpp: ########## @@ -432,6 +433,12 @@ int main(int argc, char** argv) { doris::ExecEnv::init(exec_env, paths); doris::TabletSchemaCache::create_global_schema_cache(); + // init s3 write buffer pool + doris::io::S3FileBufferPool* s3_buffer_pool = doris::io::S3FileBufferPool::GetInstance(); + s3_buffer_pool->init(doris::config::s3_write_buffer_whole_size, + doris::config::s3_write_buffer_size, + exec_env->buffered_reader_prefetch_thread_pool()); Review Comment: I didn't change the origin logic. Maybe we can use separate pool in next PR -- 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