#limit #resource #effective #mem

bin+lib effective-limits

Estimate effective resource limits for a process e.g. how much RAM is available for use.

10 releases

0.5.5 Nov 20, 2022
0.5.4 Mar 10, 2022
0.5.3 Jul 3, 2021
0.5.2 Oct 10, 2020
0.3.0 Feb 24, 2020

#149 in Configuration

Download history 224/week @ 2023-11-23 244/week @ 2023-11-30 831/week @ 2023-12-07 460/week @ 2023-12-14 537/week @ 2023-12-21 917/week @ 2023-12-28 429/week @ 2024-01-04 228/week @ 2024-01-11 340/week @ 2024-01-18 293/week @ 2024-01-25 313/week @ 2024-02-01 574/week @ 2024-02-08 282/week @ 2024-02-15 178/week @ 2024-02-22 306/week @ 2024-02-29 432/week @ 2024-03-07

1,376 downloads per month

Apache-2.0

26KB
525 lines

Estimate effective resource limits for a process

effective-limits is a mid-level API for determining the effective limits upon a process. It combines e.g. mem_info and getrlimit.

The goal is to have a good chance of avoiding failed allocations without requiring either developer or user a-priori selection of memory limits. That is, how much memory is effectively available for this process to use, considering the physical machine and ulimits, but not the impact of noisy neighbours, swappiness and so on. This limit can then be used to inform the size of in memory caches, put a threshold on in or output file buffers and so on.

#![warn(clippy::all)]

extern crate effective_limits;

fn main() -> effective_limits::Result<()> {
    println!("Effective mem limit: {}", effective_limits::memory_limit()?);
    Ok(())
}

Dependencies

~0.4–1MB
~22K SLoC