Crate rewrk_core

source ·
Expand description

ReWrk Core

HTTP benchmarking as a library made simple.

ReWrk Core is a easily configurable and extendable framework for benchmarking HTTP servers providing things like response validation, custom result collectors and custom request producers.

It measures some of the key metrics like latency, write IO and read IO and provides you with a way of grouping results together with the concept of tags.

use axum::routing::get;
use axum::Router;
use anyhow::Result;
use http::{Method, Request, Uri};
use hyper::Body;
use rewrk_core::{
    Batch,
    HttpProtocol,
    Producer,
    ReWrkBenchmark,
    RequestBatch,
    Sample,
    SampleCollector,
};

static ADDR: &str = "127.0.0.1:8080";

#[tokio::test]
async fn test_basic_benchmark() -> Result<()> {
    tracing_subscriber::fmt::try_init()?;

    tokio::spawn(run_server());

    let uri = Uri::builder()
        .scheme("http")
        .authority(ADDR)
        .path_and_query("/")
        .build()?;

    let mut benchmarker = ReWrkBenchmark::create(
        uri,
        1,
        HttpProtocol::HTTP1,
        BasicProducer::default(),
        BasicCollector::default(),
    )
    .await?;
    benchmarker.set_num_workers(1);
    benchmarker.run().await;

    let mut collector = benchmarker.consume_collector().await;
    let sample = collector.samples.remove(0);
    assert_eq!(sample.tag(), 0);
    assert_eq!(sample.latency().len(), 1);
    assert_eq!(sample.read_transfer().len(), 1);
    assert_eq!(sample.write_transfer().len(), 1);
}

async fn run_server() {
    // build our application with a single route
    let app = Router::new().route("/", get(|| async { "Hello, World!" }));

    axum::Server::bind(&ADDR.parse().unwrap())
        .serve(app.into_make_service())
        .await
        .unwrap();
}

#[derive(Default, Clone)]
pub struct BasicProducer {
    count: usize,
}

#[rewrk_core::async_trait]
impl Producer for BasicProducer {
    fn ready(&mut self) {
        self.count = 1;
    }

    async fn create_batch(&mut self) -> Result<RequestBatch> {
        if self.count > 0 {
            self.count -= 1;

            let uri = Uri::builder().path_and_query("/").build()?;
            let request = Request::builder()
                .method(Method::GET)
                .uri(uri)
                .body(Body::empty())?;
            Ok(RequestBatch::Batch(Batch {
                tag: 0,
                requests: vec![request],
            }))
        } else {
            Ok(RequestBatch::End)
        }
    }
}

#[derive(Default)]
pub struct BasicCollector {
    samples: Vec<Sample>,
}

#[rewrk_core::async_trait]
impl SampleCollector for BasicCollector {
    async fn process_sample(&mut self, sample: Sample) -> Result<()> {
        self.samples.push(sample);
        Ok(())
    }
}

Re-exports

pub use http;

Structs

The default validator handler.
The core benchmarker runtime.
A collection of metrics taken from the benchmark for a given time window.

Enums

The type of bench that is being ran.
A batch of requests or single to the workers.
The HTTP scheme used for the connection.
The provided request is invalid and should not be counted.

Constants

The default percentage workers must be waiting on producers for in order to raise a warning.
The default period of time that should elapse before a Sample is sent to a collector.

Traits

A producer creates requests used in benchmarking
A validating utility for checking responses returned by the webserver are correct.
A collector for processing submitted samples.

Type Definitions

Attribute Macros