Skip to content

Commit

Permalink
chore(executor): set plain_statistics to false for spill time profili…
Browse files Browse the repository at this point in the history
…ng statistics (#15555)

chore(executor): set false plain_statistics for spill time profiling statistics
  • Loading branch information
zhang2014 authored May 16, 2024
1 parent f69f6b9 commit c4d8b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/base/src/runtime/profile/profiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ pub fn get_statistics_desc() -> Arc<BTreeMap<ProfileStatisticsName, ProfileDesc>
desc: "The time spent to write spill in millisecond",
index: ProfileStatisticsName::SpillWriteTime as usize,
unit: StatisticsUnit::MillisSeconds,
plain_statistics: true,
plain_statistics: false,
}),
(ProfileStatisticsName::SpillReadCount, ProfileDesc {
display_name: "numbers spilled by read",
Expand All @@ -227,7 +227,7 @@ pub fn get_statistics_desc() -> Arc<BTreeMap<ProfileStatisticsName, ProfileDesc>
desc: "The time spent to read spill in millisecond",
index: ProfileStatisticsName::SpillReadTime as usize,
unit: StatisticsUnit::MillisSeconds,
plain_statistics: true,
plain_statistics: false,
}),
(ProfileStatisticsName::RuntimeFilterPruneParts, ProfileDesc {
display_name: "parts pruned by runtime filter",
Expand Down

0 comments on commit c4d8b00

Please sign in to comment.