This is an automated email from the ASF dual-hosted git repository.

zouxinyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a1af70902d [Fix]Reset io limit default value (#39842)
4a1af70902d is described below

commit 4a1af70902d9be25c6dcc214c3c985c8040532fa
Author: wangbo <wan...@apache.org>
AuthorDate: Fri Aug 23 21:25:35 2024 +0800

    [Fix]Reset io limit default value (#39842)
    
    IO Throttle's default value should -1 which means not limit IO.
---
 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

Reply via email to