File tree 2 files changed +6
-6
lines changed
service/src/pipelines/processors/transforms/aggregator
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use common_hashtable::FastHash;
27
27
use common_hashtable:: HashtableEntryMutRefLike ;
28
28
use common_hashtable:: HashtableEntryRefLike ;
29
29
use common_hashtable:: HashtableLike ;
30
- use tracing:: info ;
30
+ use tracing:: trace ;
31
31
32
32
use crate :: pipelines:: processors:: transforms:: aggregator:: aggregate_info:: AggregateInfo ;
33
33
use crate :: pipelines:: processors:: transforms:: aggregator:: aggregator_final_parallel:: ParallelFinalAggregator ;
97
97
}
98
98
}
99
99
100
- info ! (
100
+ trace ! (
101
101
"Convert to two level aggregator elapsed: {:?}" ,
102
102
instant. elapsed( )
103
103
) ;
@@ -197,7 +197,7 @@ where
197
197
}
198
198
}
199
199
200
- info ! (
200
+ trace ! (
201
201
"Convert to two level aggregator elapsed: {:?}" ,
202
202
instant. elapsed( )
203
203
) ;
Original file line number Diff line number Diff line change @@ -191,13 +191,13 @@ impl Settings {
191
191
} ,
192
192
// max_storage_io_requests_page_size
193
193
SettingValue {
194
- default_value: UserSettingValue :: UInt64 ( 512 * 1024 ) ,
194
+ default_value: UserSettingValue :: UInt64 ( 256 * 1024 ) ,
195
195
user_setting: UserSetting :: create(
196
196
"max_storage_io_requests_page_size" ,
197
- UserSettingValue :: UInt64 ( 512 * 1024 ) ,
197
+ UserSettingValue :: UInt64 ( 256 * 1024 ) ,
198
198
) ,
199
199
level: ScopeLevel :: Session ,
200
- desc: "The maximum bytes of a IO request read. By default the value is 512KB " ,
200
+ desc: "The maximum bytes of one IO request read. By default the value is 256KB " ,
201
201
possible_values: None ,
202
202
} ,
203
203
// flight_client_timeout
You can’t perform that action at this time.
0 commit comments