blob: 944239df31cfd9501ec0ebb3646e3cc62d88cce7 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
/// Print Peak RSS, Peak Commit, Page Faults based on mimalloc api
pub fn print_memory_stats() {
#[cfg(all(feature = "mimalloc", feature = "mimalloc_extended"))]
{
use datafusion::execution::memory_pool::human_readable_size;
let mut peak_rss = 0;
let mut peak_commit = 0;
let mut page_faults = 0;
unsafe {
libmimalloc_sys::mi_process_info(
std::ptr::null_mut(),
std::ptr::null_mut(),
std::ptr::null_mut(),
std::ptr::null_mut(),
&mut peak_rss,
std::ptr::null_mut(),
&mut peak_commit,
&mut page_faults,
);
}
// When modifying this output format, make sure to update the corresponding
// parsers in `mem_profile.rs`, specifically `parse_vm_line` and `parse_query_time`,
// to keep the log output and parser logic in sync.
println!(
"Peak RSS: {}, Peak Commit: {}, Page Faults: {}",
if peak_rss == 0 {
"N/A".to_string()
} else {
human_readable_size(peak_rss)
},
if peak_commit == 0 {
"N/A".to_string()
} else {
human_readable_size(peak_commit)
},
page_faults
);
}
}