diff --git a/be/src/vec/sink/writer/vtablet_writer.cpp b/be/src/vec/sink/writer/vtablet_writer.cpp index 0b39065721..c0676a5670 100644 --- a/be/src/vec/sink/writer/vtablet_writer.cpp +++ b/be/src/vec/sink/writer/vtablet_writer.cpp @@ -55,6 +55,7 @@ #endif // IWYU pragma: no_include +#include "bvar/bvar.h" #include "common/compiler_util.h" // IWYU pragma: keep #include "common/logging.h" #include "common/object_pool.h" @@ -92,7 +93,6 @@ #include "vec/exprs/vexpr.h" #include "vec/sink/vtablet_block_convertor.h" #include "vec/sink/vtablet_finder.h" -#include "bvar/bvar.h" namespace doris { class TExpr; @@ -100,9 +100,11 @@ class TExpr; namespace vectorized { bvar::Adder g_sink_write_bytes; -bvar::PerSecond> g_sink_write_bytes_per_second("sink_throughput_byte", &g_sink_write_bytes, 60); +bvar::PerSecond> g_sink_write_bytes_per_second("sink_throughput_byte", + &g_sink_write_bytes, 60); bvar::Adder g_sink_write_rows; -bvar::PerSecond> g_sink_write_rows_per_second("sink_throughput_row", &g_sink_write_rows, 60); +bvar::PerSecond> g_sink_write_rows_per_second("sink_throughput_row", + &g_sink_write_rows, 60); Status IndexChannel::init(RuntimeState* state, const std::vector& tablets) { SCOPED_CONSUME_MEM_TRACKER(_index_channel_tracker.get());