feat(tvix/tracing): gRPC trace context propagation
This introduces optional helper function in tvix/tracing for trace propagation and uses these helper in the `tvix-store`. The GRPCBlobService, GRPCDirectoryService and GRPCPathInfoService now accept a generic client, meaning the client can be generated with either `::new` or `::with_interceptor`. This was tested and validated by starting a `tvix-store daemon` and `tvix-store import`. Change-Id: I4b194483bf09266820104b4b56e4a135dca2b77a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11863 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
2b20d8d82d
commit
639a00e2ab
18 changed files with 399 additions and 48 deletions
|
|
@ -51,12 +51,14 @@ pub async fn construct_services(
|
|||
.map_err(|e| io::Error::other(e.to_string()))?;
|
||||
|
||||
if url.scheme().starts_with("grpc+") {
|
||||
let client = PathInfoServiceClient::new(
|
||||
tvix_castore::tonic::channel_from_url(&url)
|
||||
.await
|
||||
.map_err(|e| io::Error::other(e.to_string()))?,
|
||||
);
|
||||
Box::new(GRPCPathInfoService::from_client(client))
|
||||
Box::new(GRPCPathInfoService::from_client(
|
||||
PathInfoServiceClient::with_interceptor(
|
||||
tvix_castore::tonic::channel_from_url(&url)
|
||||
.await
|
||||
.map_err(|e| io::Error::other(e.to_string()))?,
|
||||
tvix_tracing::propagate::tonic::send_trace,
|
||||
),
|
||||
))
|
||||
} else {
|
||||
Box::new(SimpleRenderer::new(
|
||||
blob_service.clone(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue