diff options
author | Simon Hauser <simon.hauser@helsinki-systems.de> | 2024-06-10T15·49+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-14T09·34+0000 |
commit | fa7ed39bf480fd50c488ce54daad7322ced73aab (patch) | |
tree | 560e0bc8045168c11dade7cf93204262215349be /tvix/store/src | |
parent | 5077ca70deb8ca8e84abb9608e08bf4485d3ec4b (diff) |
feat(tvix/tracing): correctly close otlp on exit r/8271
Provide a new interface for forcing a flush of otlp traces and use this interface to shutdown otlp prior to exiting tvix-store, either if the tool was stopped with a SIGTERM or ended regularly. This also fixes an issue where traces were not even exported if for example we just imported 10 paths and never even emitted more than 256 traces. The implementation uses a mpsc channel so a flush can be done without having to wait for it to complete. If you want to wait for a flush to complete you can provide a oneshot channel which will receive a message once flushing is complete. Because of a otlp bug `force_flush` as well as `shutdown_tracer_provider` need to be executed using `spawn_blocking` otherwise the function will deadlock. See https://github.com/open-telemetry/opentelemetry-rust/issues/1395#issuecomment-1953280335 Change-Id: I0a828391adfb1f72dc8305f62ced8cba0515847c Reviewed-on: https://cl.tvl.fyi/c/depot/+/11803 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: Simon Hauser <simon.hauser@helsinki-systems.de>
Diffstat (limited to 'tvix/store/src')
-rw-r--r-- | tvix/store/src/bin/tvix-store.rs | 55 |
1 files changed, 36 insertions, 19 deletions
diff --git a/tvix/store/src/bin/tvix-store.rs b/tvix/store/src/bin/tvix-store.rs index 03c699b893cd..dadfa114f72b 100644 --- a/tvix/store/src/bin/tvix-store.rs +++ b/tvix/store/src/bin/tvix-store.rs @@ -199,25 +199,8 @@ fn default_threads() -> usize { 1 } -#[tokio::main] -#[instrument(fields(indicatif.pb_show=1))] -async fn main() -> Result<(), Box<dyn std::error::Error>> { - let cli = Cli::parse(); - - #[cfg(feature = "otlp")] - { - if cli.otlp { - tvix_tracing::init_with_otlp(cli.log_level, "tvix.store")?; - } else { - tvix_tracing::init(cli.log_level)?; - } - } - - #[cfg(not(feature = "otlp"))] - { - tvix_tracing::init(cli.log_level)?; - } - +#[instrument(fields(indicatif.pb_show=1), skip(cli))] +async fn run_cli(cli: Cli) -> Result<(), Box<dyn std::error::Error>> { match cli.command { Commands::Daemon { listen_address, @@ -528,3 +511,37 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { }; Ok(()) } + +#[tokio::main] +#[instrument(fields(indicatif.pb_show=1))] +async fn main() -> Result<(), Box<dyn std::error::Error>> { + let cli = Cli::parse(); + + let tracing_handle = { + let mut builder = tvix_tracing::TracingBuilder::default(); + builder = builder.level(cli.log_level); + #[cfg(feature = "otlp")] + { + if cli.otlp { + builder = builder.enable_otlp("tvix.store"); + } + } + builder.build()? + }; + + tokio::select! { + res = tokio::signal::ctrl_c() => { + res?; + if let Err(e) = tracing_handle.force_shutdown().await { + eprintln!("failed to shutdown tracing: {e}"); + } + Ok(()) + }, + res = run_cli(cli) => { + if let Err(e) = tracing_handle.shutdown().await { + eprintln!("failed to shutdown tracing: {e}"); + } + res + } + } +} |