Skip to content

Commit c4d8b00

Browse files
authored
chore(executor): set plain_statistics to false for spill time profiling statistics (#15555)
chore(executor): set false plain_statistics for spill time profiling statistics
1 parent f69f6b9 commit c4d8b00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/base/src/runtime/profile/profiles.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ pub fn get_statistics_desc() -> Arc<BTreeMap<ProfileStatisticsName, ProfileDesc>
206206
desc: "The time spent to write spill in millisecond",
207207
index: ProfileStatisticsName::SpillWriteTime as usize,
208208
unit: StatisticsUnit::MillisSeconds,
209-
plain_statistics: true,
209+
plain_statistics: false,
210210
}),
211211
(ProfileStatisticsName::SpillReadCount, ProfileDesc {
212212
display_name: "numbers spilled by read",
@@ -227,7 +227,7 @@ pub fn get_statistics_desc() -> Arc<BTreeMap<ProfileStatisticsName, ProfileDesc>
227227
desc: "The time spent to read spill in millisecond",
228228
index: ProfileStatisticsName::SpillReadTime as usize,
229229
unit: StatisticsUnit::MillisSeconds,
230-
plain_statistics: true,
230+
plain_statistics: false,
231231
}),
232232
(ProfileStatisticsName::RuntimeFilterPruneParts, ProfileDesc {
233233
display_name: "parts pruned by runtime filter",

0 commit comments

Comments
 (0)