Skip to content
/ unkai Public

unkai(雲海) rises and falls, things come and go, memory allocates and deallocates

License

Notifications You must be signed in to change notification settings

waynexia/unkai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unkai

Crates Badger Docs Badger

Unkai is a tool set for Rust's memory allocation APIs mainly focus on tracking and conditional analyzing / limiting memory usage.

Basic Usage

It's now compatible with two major forms of allocator API in the standard library:

Use with GlobalAlloc

The entrypoint is [UnkaiGlobalAlloc]. Only need to wrap your original global allocator with [UnkaiGlobalAlloc] like this:

use tikv_jemallocator::Jemalloc;
use unkai::UnkaiGlobalAlloc;

#[global_allocator]
static UNKAI: UnkaiGlobalAlloc<Jemalloc> = UnkaiGlobalAlloc::new(Jemalloc {}, 99, 5, 10, 0);

Use with Allocator

Notice that Allocator only available when the unstable feature allocator_api is enabled via #![feature(allocator_api)]. And enabling unstable feature requires the nigntly channel Rust toolchain.

The entrypoint is [Unkai]. Example usage:

let mut vec_container: Vec<usize, UnkaiGlobal> = Vec::with_capacity_in(10000, Unkai::default());
assert_eq!(vec_container.allocator().report_usage(), 80000);

There is also an example file examples/allocator.rs that shows more usages.

Tracking allocation

TBD

Supported Feature

  • GlobalAlloc
    • Capture and record backtrace with memory consumption

Roadmap

  • GlobalAlloc
    • Record pointer's lifetime
  • Allocator
    • Tree-structured
    • Low-overhead in-use statistics
  • General
    • Prometheus integration
    • Build-in report generation

Example

There are some example files under examples/. They are:

  • allocator.rs: shows the usage of Allocator wrapper to track memory consumption at runtime.
  • collections.rs: shows the usage of GlobalAlloc and stack tracking

To run example, use command like the following:

cargo run --example collections --release

About

unkai(雲海) rises and falls, things come and go, memory allocates and deallocates

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages