mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
## Problem The new communicator gRPC client has significantly worse Pagebench performance than a basic gRPC client. We need to find out why. ## Summary of changes Add a `pagebench --profile` flag which takes a client CPU profile of the benchmark and writes a flamegraph to `profile.svg`.
37 lines
971 B
TOML
37 lines
971 B
TOML
[package]
|
|
name = "pagebench"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
camino.workspace = true
|
|
clap.workspace = true
|
|
futures.workspace = true
|
|
hdrhistogram.workspace = true
|
|
humantime.workspace = true
|
|
humantime-serde.workspace = true
|
|
pprof.workspace = true
|
|
rand.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tokio-util.workspace = true
|
|
tonic.workspace = true
|
|
url.workspace = true
|
|
|
|
pageserver_api.workspace = true
|
|
pageserver_client.workspace = true
|
|
pageserver_client_grpc.workspace = true
|
|
pageserver_page_api.workspace = true
|
|
utils = { path = "../../libs/utils/" }
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|