mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-31 20:10:38 +00:00
## Problem The rich gRPC Pageserver client needs to split GetPage batches that straddle multiple shards. Touches #11735. Requires #12462. ## Summary of changes Adds a `GetPageSplitter` which splits `GetPageRequest` that span multiple shards, and then reassembles the responses. Dispatches per-shard requests in parallel.
20 lines
452 B
TOML
20 lines
452 B
TOML
[package]
|
|
name = "pageserver_client_grpc"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
compute_api.workspace = true
|
|
futures.workspace = true
|
|
pageserver_api.workspace = true
|
|
pageserver_page_api.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tonic.workspace = true
|
|
tracing.workspace = true
|
|
utils.workspace = true
|
|
workspace_hack.workspace = true
|