This is an automated email from the ASF dual-hosted git repository. wangbo pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 357394bb3e5 [branch-2.1]Reset io limit default value (#39898) 357394bb3e5 is described below commit 357394bb3e533aebb5598ab23ba712ac89d45db3 Author: wangbo <wan...@apache.org> AuthorDate: Mon Aug 26 14:27:35 2024 +0800 [branch-2.1]Reset io limit default value (#39898) pick #39842 --- be/src/runtime/workload_management/io_throttle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/runtime/workload_management/io_throttle.h b/be/src/runtime/workload_management/io_throttle.h index ce62c65d7a9..4212527020e 100644 --- a/be/src/runtime/workload_management/io_throttle.h +++ b/be/src/runtime/workload_management/io_throttle.h @@ -47,7 +47,7 @@ private: std::mutex _mutex; std::condition_variable wait_condition; int64_t _next_io_time_micros {0}; - std::atomic<int64_t> _io_bytes_per_second_limit {10485760}; + std::atomic<int64_t> _io_bytes_per_second_limit {-1}; // bvar monitor std::unique_ptr<bvar::Adder<size_t>> _io_adder; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org