test(benches): re-enable pipeline and server bench (#2934)

re-enable the recently disabled pipeline and server bench using
`hyper::server::conn` instead of the removed higher-level `Server` api
This commit is contained in:
Oddbjørn Grødem
2022-08-02 15:46:26 +02:00
committed by GitHub
parent 3c7bef3b6f
commit c558647762
2 changed files with 181 additions and 177 deletions

View File

@@ -3,87 +3,85 @@
extern crate test; extern crate test;
// TODO: Reimplement hello_world_16 bench using hyper::server::conn use std::io::{Read, Write};
// (instead of Server). use std::net::{SocketAddr, TcpStream};
use std::sync::mpsc;
use std::time::Duration;
// use std::io::{Read, Write}; use tokio::net::TcpListener;
// use std::net::TcpStream; use tokio::sync::oneshot;
// use std::sync::mpsc;
// use std::time::Duration;
// use tokio::sync::oneshot; use hyper::server::conn::Http;
use hyper::service::service_fn;
use hyper::{Body, Response};
// use hyper::service::{make_service_fn, service_fn}; const PIPELINED_REQUESTS: usize = 16;
// use hyper::{Body, Response, Server};
// const PIPELINED_REQUESTS: usize = 16; #[bench]
fn hello_world_16(b: &mut test::Bencher) {
let _ = pretty_env_logger::try_init();
let (_until_tx, until_rx) = oneshot::channel::<()>();
// #[bench] let addr = {
// fn hello_world_16(b: &mut test::Bencher) { let (addr_tx, addr_rx) = mpsc::channel();
// let _ = pretty_env_logger::try_init(); std::thread::spawn(move || {
// let (_until_tx, until_rx) = oneshot::channel::<()>(); let addr: SocketAddr = "127.0.0.1:0".parse().unwrap();
let rt = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.expect("rt build");
// let addr = { let listener = rt.block_on(TcpListener::bind(addr)).unwrap();
// let (addr_tx, addr_rx) = mpsc::channel(); let addr = listener.local_addr().unwrap();
// std::thread::spawn(move || {
// let addr = "127.0.0.1:0".parse().unwrap();
// let make_svc = make_service_fn(|_| async { rt.spawn(async move {
// Ok::<_, hyper::Error>(service_fn(|_| async { loop {
// Ok::<_, hyper::Error>(Response::new(Body::from("Hello, World!"))) let (stream, _addr) = listener.accept().await.expect("accept");
// }))
// });
// let rt = tokio::runtime::Builder::new_current_thread() Http::new()
// .enable_all() .pipeline_flush(true)
// .build() .serve_connection(
// .expect("rt build"); stream,
// let srv = rt.block_on(async move { service_fn(|_| async {
// Server::bind(&addr) Ok::<_, hyper::Error>(Response::new(Body::from("Hello, World!")))
// .http1_pipeline_flush(true) }),
// .serve(make_svc) )
// }); .await
.unwrap();
}
});
// addr_tx.send(srv.local_addr()).unwrap(); addr_tx.send(addr).unwrap();
rt.block_on(until_rx).ok();
});
// let graceful = srv.with_graceful_shutdown(async { addr_rx.recv().unwrap()
// until_rx.await.ok(); };
// });
// rt.block_on(async { let mut pipelined_reqs = Vec::new();
// if let Err(e) = graceful.await { for _ in 0..PIPELINED_REQUESTS {
// panic!("server error: {}", e); pipelined_reqs.extend_from_slice(b"GET / HTTP/1.1\r\nHost: localhost\r\n\r\n");
// } }
// });
// });
// addr_rx.recv().unwrap() let total_bytes = {
// }; let mut tcp = TcpStream::connect(addr).unwrap();
tcp.write_all(b"GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n")
.unwrap();
let mut buf = Vec::new();
tcp.read_to_end(&mut buf).unwrap()
} * PIPELINED_REQUESTS;
// let mut pipelined_reqs = Vec::new(); let mut tcp = TcpStream::connect(addr).unwrap();
// for _ in 0..PIPELINED_REQUESTS { tcp.set_read_timeout(Some(Duration::from_secs(3))).unwrap();
// pipelined_reqs.extend_from_slice(b"GET / HTTP/1.1\r\nHost: localhost\r\n\r\n"); let mut buf = [0u8; 8192];
// }
// let total_bytes = { b.bytes = (pipelined_reqs.len() + total_bytes) as u64;
// let mut tcp = TcpStream::connect(addr).unwrap(); b.iter(|| {
// tcp.write_all(b"GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n") tcp.write_all(&pipelined_reqs).unwrap();
// .unwrap(); let mut sum = 0;
// let mut buf = Vec::new(); while sum < total_bytes {
// tcp.read_to_end(&mut buf).unwrap() sum += tcp.read(&mut buf).unwrap();
// } * PIPELINED_REQUESTS; }
assert_eq!(sum, total_bytes);
// let mut tcp = TcpStream::connect(addr).unwrap(); });
// tcp.set_read_timeout(Some(Duration::from_secs(3))).unwrap(); }
// let mut buf = [0u8; 8192];
// b.bytes = (pipelined_reqs.len() + total_bytes) as u64;
// b.iter(|| {
// tcp.write_all(&pipelined_reqs).unwrap();
// let mut sum = 0;
// while sum < total_bytes {
// sum += tcp.read(&mut buf).unwrap();
// }
// assert_eq!(sum, total_bytes);
// });
// }

View File

@@ -3,133 +3,139 @@
extern crate test; extern crate test;
// TODO: Reimplement bench_server using hyper::server::conn (instead
// of removed Server).
use std::io::{Read, Write}; use std::io::{Read, Write};
use std::net::{TcpListener, TcpStream}; use std::net::{SocketAddr, TcpListener, TcpStream};
use std::sync::mpsc; use std::sync::mpsc;
// use std::time::Duration; use std::time::Duration;
// use futures_util::{stream, StreamExt}; use futures_util::{stream, StreamExt};
// use http_body_util::StreamBody; use http_body_util::{BodyExt, StreamBody};
// use tokio::sync::oneshot; use tokio::sync::oneshot;
// use hyper::service::{make_service_fn, service_fn}; use hyper::server::conn::Http;
// use hyper::{Response, Server}; use hyper::service::service_fn;
use hyper::Response;
// macro_rules! bench_server { macro_rules! bench_server {
// ($b:ident, $header:expr, $body:expr) => {{ ($b:ident, $header:expr, $body:expr) => {{
// let _ = pretty_env_logger::try_init(); let _ = pretty_env_logger::try_init();
// let (_until_tx, until_rx) = oneshot::channel::<()>(); let (_until_tx, until_rx) = oneshot::channel::<()>();
// let addr = {
// let (addr_tx, addr_rx) = mpsc::channel();
// std::thread::spawn(move || {
// let addr = "127.0.0.1:0".parse().unwrap();
// let make_svc = make_service_fn(|_| async {
// Ok::<_, hyper::Error>(service_fn(|_| async {
// Ok::<_, hyper::Error>(
// Response::builder()
// .header($header.0, $header.1)
// .header("content-type", "text/plain")
// .body($body())
// .unwrap(),
// )
// }))
// });
// let rt = tokio::runtime::Builder::new_current_thread() let addr = {
// .enable_all() let (addr_tx, addr_rx) = mpsc::channel();
// .build() std::thread::spawn(move || {
// .expect("rt build"); let addr: SocketAddr = "127.0.0.1:0".parse().unwrap();
let rt = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.expect("rt build");
// let srv = rt.block_on(async move { Server::bind(&addr).serve(make_svc) }); let listener = rt.block_on(tokio::net::TcpListener::bind(addr)).unwrap();
let addr = listener.local_addr().unwrap();
// addr_tx.send(srv.local_addr()).unwrap(); rt.spawn(async move {
loop {
let (stream, _) = listener.accept().await.expect("accept");
// let graceful = srv.with_graceful_shutdown(async { Http::new()
// until_rx.await.ok(); .serve_connection(
// }); stream,
// rt.block_on(async move { service_fn(|_| async {
// if let Err(e) = graceful.await { Ok::<_, hyper::Error>(
// panic!("server error: {}", e); Response::builder()
// } .header($header.0, $header.1)
// }); .header("content-type", "text/plain")
// }); .body($body())
.unwrap(),
)
}),
)
.await
.unwrap();
}
});
// addr_rx.recv().unwrap() addr_tx.send(addr).unwrap();
// }; rt.block_on(until_rx).ok();
});
// let total_bytes = { addr_rx.recv().unwrap()
// let mut tcp = TcpStream::connect(addr).unwrap(); };
// tcp.write_all(b"GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n")
// .unwrap();
// let mut buf = Vec::new();
// tcp.read_to_end(&mut buf).unwrap()
// };
// let mut tcp = TcpStream::connect(addr).unwrap(); let total_bytes = {
// tcp.set_read_timeout(Some(Duration::from_secs(3))).unwrap(); let mut tcp = TcpStream::connect(addr).unwrap();
// let mut buf = [0u8; 8192]; tcp.write_all(b"GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n")
.unwrap();
let mut buf = Vec::new();
tcp.read_to_end(&mut buf).unwrap()
};
// $b.bytes = 35 + total_bytes as u64; let mut tcp = TcpStream::connect(addr).unwrap();
// $b.iter(|| { tcp.set_read_timeout(Some(Duration::from_secs(3))).unwrap();
// tcp.write_all(b"GET / HTTP/1.1\r\nHost: localhost\r\n\r\n") let mut buf = [0u8; 8192];
// .unwrap();
// let mut sum = 0;
// while sum < total_bytes {
// sum += tcp.read(&mut buf).unwrap();
// }
// assert_eq!(sum, total_bytes);
// });
// }};
// }
// fn body(b: &'static [u8]) -> hyper::Body { $b.bytes = 35 + total_bytes as u64;
// b.into() $b.iter(|| {
// } tcp.write_all(b"GET / HTTP/1.1\r\nHost: localhost\r\n\r\n")
.unwrap();
let mut sum = 0;
while sum < total_bytes {
sum += tcp.read(&mut buf).unwrap();
}
assert_eq!(sum, total_bytes);
});
}};
}
// #[bench] fn body(b: &'static [u8]) -> hyper::Body {
// fn throughput_fixedsize_small_payload(b: &mut test::Bencher) { b.into()
// bench_server!(b, ("content-length", "13"), || body(b"Hello, World!")) }
// }
// #[bench] #[bench]
// fn throughput_fixedsize_large_payload(b: &mut test::Bencher) { fn throughput_fixedsize_small_payload(b: &mut test::Bencher) {
// bench_server!(b, ("content-length", "1000000"), || body( bench_server!(b, ("content-length", "13"), || body(b"Hello, World!"))
// &[b'x'; 1_000_000] }
// ))
// }
// #[bench] #[bench]
// fn throughput_fixedsize_many_chunks(b: &mut test::Bencher) { fn throughput_fixedsize_large_payload(b: &mut test::Bencher) {
// bench_server!(b, ("content-length", "1000000"), || { bench_server!(b, ("content-length", "1000000"), || body(
// static S: &[&[u8]] = &[&[b'x'; 1_000] as &[u8]; 1_000] as _; &[b'x'; 1_000_000]
// StreamBody::new(stream::iter(S.iter()).map(|&s| Ok::<_, String>(s))) ))
// }) }
// }
// #[bench] #[bench]
// fn throughput_chunked_small_payload(b: &mut test::Bencher) { fn throughput_fixedsize_many_chunks(b: &mut test::Bencher) {
// bench_server!(b, ("transfer-encoding", "chunked"), || body( bench_server!(b, ("content-length", "1000000"), move || {
// b"Hello, World!" static S: &[&[u8]] = &[&[b'x'; 1_000] as &[u8]; 1_000] as _;
// )) BodyExt::boxed(StreamBody::new(
// } stream::iter(S.iter()).map(|&s| Ok::<_, String>(s)),
))
})
}
// #[bench] #[bench]
// fn throughput_chunked_large_payload(b: &mut test::Bencher) { fn throughput_chunked_small_payload(b: &mut test::Bencher) {
// bench_server!(b, ("transfer-encoding", "chunked"), || body( bench_server!(b, ("transfer-encoding", "chunked"), || body(
// &[b'x'; 1_000_000] b"Hello, World!"
// )) ))
// } }
// #[bench] #[bench]
// fn throughput_chunked_many_chunks(b: &mut test::Bencher) { fn throughput_chunked_large_payload(b: &mut test::Bencher) {
// bench_server!(b, ("transfer-encoding", "chunked"), || { bench_server!(b, ("transfer-encoding", "chunked"), || body(
// static S: &[&[u8]] = &[&[b'x'; 1_000] as &[u8]; 1_000] as _; &[b'x'; 1_000_000]
// StreamBody::new(stream::iter(S.iter()).map(|&s| Ok::<_, String>(s))) ))
// }) }
// }
#[bench]
fn throughput_chunked_many_chunks(b: &mut test::Bencher) {
bench_server!(b, ("transfer-encoding", "chunked"), || {
static S: &[&[u8]] = &[&[b'x'; 1_000] as &[u8]; 1_000] as _;
BodyExt::boxed(StreamBody::new(
stream::iter(S.iter()).map(|&s| Ok::<_, String>(s)),
))
})
}
#[bench] #[bench]
fn raw_tcp_throughput_small_payload(b: &mut test::Bencher) { fn raw_tcp_throughput_small_payload(b: &mut test::Bencher) {