7 releases

0.2.3 Dec 11, 2023
0.2.2 Nov 17, 2022
0.2.0 Jun 9, 2022
0.1.3 May 26, 2022
0.1.1 Jan 28, 2022

#296 in Network programming

Download history 310/week @ 2023-12-23 281/week @ 2023-12-30 490/week @ 2024-01-06 560/week @ 2024-01-13 551/week @ 2024-01-20 505/week @ 2024-01-27 166/week @ 2024-02-03 418/week @ 2024-02-10 481/week @ 2024-02-17 658/week @ 2024-02-24 693/week @ 2024-03-02 505/week @ 2024-03-09 718/week @ 2024-03-16 417/week @ 2024-03-23 488/week @ 2024-03-30 296/week @ 2024-04-06

2,039 downloads per month
Used in bevy_mod_pies_spacetrader…

MIT/Apache

19KB
317 lines

Hierarchical token Bucket

This crate implements Hierarchical Token Bucket algorithm with fixed structure https://en.wikipedia.org/wiki/Token_bucket#Hierarchical_token_bucket

Crate does not rely on periodic updates to maintain the token buckets which means it can be updated right before requesting tokens

use htb::*;
use std::time::Duration;

#[derive(Clone, Copy, Eq, PartialEq)]
enum Rate {
    Long,
    Short,
}

impl From<Rate> for usize {
    fn from(rate: Rate) -> Self {
        match rate {
            Rate::Long => 0,
            Rate::Short => 1,
        }
    }
}

// let's implement a rate limiter with two required properties:
// - packet rate should not exceed 250 msg per second
// - packet rate should not exceed 1500 msg per 15 seconds

let mut htb = HTB::new(&[
    BucketCfg {
        this: Rate::Long,
        parent: None,
        rate: (1500, Duration::from_secs(15)),
        capacity: 0,
    },
    BucketCfg {
        this: Rate::Short,
        parent: Some(Rate::Long),
        rate: (250, Duration::from_secs(1)),
        capacity: 250,
    },
])?;

// we are allowed a single 250 token burst
assert!(htb.take_n(Rate::Short, 250));
assert!(!htb.peek(Rate::Short));
htb.advance(Duration::from_secs(1));

// after this point established packet rate obeys "long" indefinitely
for _ in 0..10 {
    assert!(htb.take_n(Rate::Short, 100));
    assert!(!htb.peek(Rate::Short));
    htb.advance(Duration::from_secs(1));
}

// if we stop consuming tokens for some time
htb.advance(Duration::from_secs(10));
assert!(htb.take_n(Rate::Short, 250));
// we get more bursts
assert!(!htb.peek(Rate::Short));
# Ok::<(), Error>(())

Dependencies

~11–445KB