feat(tvix/tvix-store): improve progress bars
Don't show an empty spinner for daemon commands. Move the bar to the right, so the text is better aligned between spinner progress and bar progress styles. Generally, push progress bars a bit more down to the place where we can track progress. This includes adding one in the upload_blob span. Introduce another progress style template for transfers, which interprets the counter as bytes (not just a plain integer), and also a data rate. Use it for here and in the fetching code, and also make the progress bar itself a bit less wide. Change-Id: I15c2ea3d2b24b5186cec19cd3dbd706638497f40 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11845 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Simon Hauser <simon.hauser@helsinki-systems.de>
This commit is contained in:
parent
cfab953094
commit
28b692fd50
8 changed files with 52 additions and 40 deletions
1
tvix/Cargo.lock
generated
1
tvix/Cargo.lock
generated
|
@ -4251,6 +4251,7 @@ dependencies = [
|
||||||
"tower",
|
"tower",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-indicatif",
|
"tracing-indicatif",
|
||||||
|
"tvix-tracing",
|
||||||
"url",
|
"url",
|
||||||
"vhost",
|
"vhost",
|
||||||
"vhost-user-backend",
|
"vhost-user-backend",
|
||||||
|
|
|
@ -13382,6 +13382,10 @@ rec {
|
||||||
name = "tracing-indicatif";
|
name = "tracing-indicatif";
|
||||||
packageId = "tracing-indicatif";
|
packageId = "tracing-indicatif";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "tvix-tracing";
|
||||||
|
packageId = "tvix-tracing";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "url";
|
name = "url";
|
||||||
packageId = "url";
|
packageId = "url";
|
||||||
|
|
|
@ -29,6 +29,7 @@ tonic = "0.11.0"
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
tracing-indicatif = "0.3.6"
|
tracing-indicatif = "0.3.6"
|
||||||
|
tvix-tracing = { path = "../tracing" }
|
||||||
url = "2.4.0"
|
url = "2.4.0"
|
||||||
walkdir = "2.4.0"
|
walkdir = "2.4.0"
|
||||||
zstd = "0.13.0"
|
zstd = "0.13.0"
|
||||||
|
|
|
@ -6,6 +6,8 @@ use std::fs::FileType;
|
||||||
use std::os::unix::ffi::OsStringExt;
|
use std::os::unix::ffi::OsStringExt;
|
||||||
use std::os::unix::fs::MetadataExt;
|
use std::os::unix::fs::MetadataExt;
|
||||||
use std::os::unix::fs::PermissionsExt;
|
use std::os::unix::fs::PermissionsExt;
|
||||||
|
use tokio::io::BufReader;
|
||||||
|
use tokio_util::io::InspectReader;
|
||||||
use tracing::instrument;
|
use tracing::instrument;
|
||||||
use tracing::Span;
|
use tracing::Span;
|
||||||
use tracing_indicatif::span_ext::IndicatifSpanExt;
|
use tracing_indicatif::span_ext::IndicatifSpanExt;
|
||||||
|
@ -28,7 +30,7 @@ use super::IngestionError;
|
||||||
///
|
///
|
||||||
/// This function will walk the filesystem using `walkdir` and will consume
|
/// This function will walk the filesystem using `walkdir` and will consume
|
||||||
/// `O(#number of entries)` space.
|
/// `O(#number of entries)` space.
|
||||||
#[instrument(skip(blob_service, directory_service), fields(path), err)]
|
#[instrument(skip(blob_service, directory_service), fields(path, indicatif.pb_show=1), err)]
|
||||||
pub async fn ingest_path<BS, DS, P>(
|
pub async fn ingest_path<BS, DS, P>(
|
||||||
blob_service: BS,
|
blob_service: BS,
|
||||||
directory_service: DS,
|
directory_service: DS,
|
||||||
|
@ -39,7 +41,10 @@ where
|
||||||
BS: BlobService + Clone,
|
BS: BlobService + Clone,
|
||||||
DS: DirectoryService,
|
DS: DirectoryService,
|
||||||
{
|
{
|
||||||
Span::current().pb_start();
|
let span = Span::current();
|
||||||
|
span.pb_set_message(&format!("Ingesting {:?}", path));
|
||||||
|
span.pb_start();
|
||||||
|
|
||||||
let iter = WalkDir::new(path.as_ref())
|
let iter = WalkDir::new(path.as_ref())
|
||||||
.follow_links(false)
|
.follow_links(false)
|
||||||
.follow_root_links(false)
|
.follow_root_links(false)
|
||||||
|
@ -49,11 +54,12 @@ where
|
||||||
let entries = dir_entries_to_ingestion_stream(blob_service, iter, path.as_ref());
|
let entries = dir_entries_to_ingestion_stream(blob_service, iter, path.as_ref());
|
||||||
ingest_entries(
|
ingest_entries(
|
||||||
directory_service,
|
directory_service,
|
||||||
entries.inspect(|e| {
|
entries.inspect({
|
||||||
if let Ok(e) = e {
|
let span = span.clone();
|
||||||
let s = Span::current();
|
move |e| {
|
||||||
s.pb_inc(1);
|
if e.is_ok() {
|
||||||
s.pb_set_message(&format!("Ingesting {}", e.path()));
|
span.pb_inc(1)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
@ -151,7 +157,7 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Uploads the file at the provided [Path] the the [BlobService].
|
/// Uploads the file at the provided [Path] the the [BlobService].
|
||||||
#[instrument(skip(blob_service), fields(path), err)]
|
#[instrument(skip(blob_service), fields(path, indicatif.pb_show=1), err)]
|
||||||
async fn upload_blob<BS>(
|
async fn upload_blob<BS>(
|
||||||
blob_service: BS,
|
blob_service: BS,
|
||||||
path: impl AsRef<std::path::Path>,
|
path: impl AsRef<std::path::Path>,
|
||||||
|
@ -159,16 +165,29 @@ async fn upload_blob<BS>(
|
||||||
where
|
where
|
||||||
BS: BlobService,
|
BS: BlobService,
|
||||||
{
|
{
|
||||||
let mut file = match tokio::fs::File::open(path.as_ref()).await {
|
let span = Span::current();
|
||||||
Ok(file) => file,
|
span.pb_set_style(&tvix_tracing::PB_TRANSFER_STYLE);
|
||||||
Err(e) => return Err(Error::BlobRead(path.as_ref().to_path_buf(), e)),
|
span.pb_set_message(&format!("Uploading blob for {:?}", path.as_ref()));
|
||||||
};
|
span.pb_start();
|
||||||
|
|
||||||
|
let file = tokio::fs::File::open(path.as_ref())
|
||||||
|
.await
|
||||||
|
.map_err(|e| Error::BlobRead(path.as_ref().to_path_buf(), e))?;
|
||||||
|
|
||||||
|
let metadata = file
|
||||||
|
.metadata()
|
||||||
|
.await
|
||||||
|
.map_err(|e| Error::Stat(path.as_ref().to_path_buf(), e))?;
|
||||||
|
|
||||||
|
span.pb_set_length(metadata.len());
|
||||||
|
let reader = InspectReader::new(file, |d| {
|
||||||
|
span.pb_inc(d.len() as u64);
|
||||||
|
});
|
||||||
|
|
||||||
let mut writer = blob_service.open_write().await;
|
let mut writer = blob_service.open_write().await;
|
||||||
|
tokio::io::copy(&mut BufReader::new(reader), &mut writer)
|
||||||
if let Err(e) = tokio::io::copy(&mut file, &mut writer).await {
|
.await
|
||||||
return Err(Error::BlobRead(path.as_ref().to_path_buf(), e));
|
.map_err(|e| Error::BlobRead(path.as_ref().to_path_buf(), e))?;
|
||||||
};
|
|
||||||
|
|
||||||
let digest = writer
|
let digest = writer
|
||||||
.close()
|
.close()
|
||||||
|
|
|
@ -14,9 +14,6 @@ use crate::proto::FileNode;
|
||||||
use crate::proto::SymlinkNode;
|
use crate::proto::SymlinkNode;
|
||||||
use crate::B3Digest;
|
use crate::B3Digest;
|
||||||
use futures::{Stream, StreamExt};
|
use futures::{Stream, StreamExt};
|
||||||
use tracing::Span;
|
|
||||||
use tracing_indicatif::span_ext::IndicatifSpanExt;
|
|
||||||
|
|
||||||
use tracing::Level;
|
use tracing::Level;
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
@ -46,7 +43,7 @@ pub mod fs;
|
||||||
/// map and upload it to the [DirectoryService] through a lazily created [DirectoryPutter].
|
/// map and upload it to the [DirectoryService] through a lazily created [DirectoryPutter].
|
||||||
///
|
///
|
||||||
/// On success, returns the root node.
|
/// On success, returns the root node.
|
||||||
#[instrument(skip_all, fields(indicatif.pb_show=1), ret(level = Level::TRACE), err)]
|
#[instrument(skip_all, ret(level = Level::TRACE), err)]
|
||||||
pub async fn ingest_entries<DS, S, E>(
|
pub async fn ingest_entries<DS, S, E>(
|
||||||
directory_service: DS,
|
directory_service: DS,
|
||||||
mut entries: S,
|
mut entries: S,
|
||||||
|
@ -60,8 +57,6 @@ where
|
||||||
let mut directories: HashMap<PathBuf, Directory> = HashMap::default();
|
let mut directories: HashMap<PathBuf, Directory> = HashMap::default();
|
||||||
let mut maybe_directory_putter: Option<Box<dyn DirectoryPutter>> = None;
|
let mut maybe_directory_putter: Option<Box<dyn DirectoryPutter>> = None;
|
||||||
|
|
||||||
Span::current().pb_start();
|
|
||||||
|
|
||||||
let root_node = loop {
|
let root_node = loop {
|
||||||
let mut entry = entries
|
let mut entry = entries
|
||||||
.next()
|
.next()
|
||||||
|
|
|
@ -222,7 +222,7 @@ impl<BS, DS, PS, NS> Fetcher<BS, DS, PS, NS> {
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
span.pb_set_length(f.metadata().await?.len());
|
span.pb_set_length(f.metadata().await?.len());
|
||||||
span.pb_set_style(&tvix_tracing::PB_PROGRESS_STYLE);
|
span.pb_set_style(&tvix_tracing::PB_TRANSFER_STYLE);
|
||||||
span.pb_start();
|
span.pb_start();
|
||||||
Ok(Box::new(tokio::io::BufReader::new(InspectReader::new(
|
Ok(Box::new(tokio::io::BufReader::new(InspectReader::new(
|
||||||
f,
|
f,
|
||||||
|
@ -236,9 +236,9 @@ impl<BS, DS, PS, NS> Fetcher<BS, DS, PS, NS> {
|
||||||
|
|
||||||
if let Some(content_length) = resp.content_length() {
|
if let Some(content_length) = resp.content_length() {
|
||||||
span.pb_set_length(content_length);
|
span.pb_set_length(content_length);
|
||||||
span.pb_set_style(&tvix_tracing::PB_PROGRESS_STYLE);
|
span.pb_set_style(&tvix_tracing::PB_TRANSFER_STYLE);
|
||||||
} else {
|
} else {
|
||||||
span.pb_set_style(&tvix_tracing::PB_SPINNER_STYLE);
|
span.pb_set_style(&tvix_tracing::PB_TRANSFER_STYLE);
|
||||||
}
|
}
|
||||||
span.pb_start();
|
span.pb_start();
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@ fn default_threads() -> usize {
|
||||||
.unwrap_or(4)
|
.unwrap_or(4)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument(fields(indicatif.pb_show=1), skip(cli))]
|
#[instrument(skip_all)]
|
||||||
async fn run_cli(cli: Cli) -> Result<(), Box<dyn std::error::Error>> {
|
async fn run_cli(cli: Cli) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
match cli.command {
|
match cli.command {
|
||||||
Commands::Daemon {
|
Commands::Daemon {
|
||||||
|
@ -270,19 +270,9 @@ async fn run_cli(cli: Cli) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let nar_calculation_service: Arc<dyn NarCalculationService> =
|
let nar_calculation_service: Arc<dyn NarCalculationService> =
|
||||||
nar_calculation_service.into();
|
nar_calculation_service.into();
|
||||||
|
|
||||||
let root_span = {
|
|
||||||
let s = Span::current();
|
|
||||||
s.pb_set_style(&tvix_tracing::PB_PROGRESS_STYLE);
|
|
||||||
s.pb_set_message("Importing paths");
|
|
||||||
s.pb_set_length(paths.len() as u64);
|
|
||||||
s.pb_start();
|
|
||||||
s
|
|
||||||
};
|
|
||||||
|
|
||||||
let tasks = paths
|
let tasks = paths
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|path| {
|
.map(|path| {
|
||||||
let paths_span = root_span.clone();
|
|
||||||
tokio::task::spawn({
|
tokio::task::spawn({
|
||||||
let blob_service = blob_service.clone();
|
let blob_service = blob_service.clone();
|
||||||
let directory_service = directory_service.clone();
|
let directory_service = directory_service.clone();
|
||||||
|
@ -305,7 +295,6 @@ async fn run_cli(cli: Cli) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
println!("{}", output_path.to_absolute_path());
|
println!("{}", output_path.to_absolute_path());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
paths_span.pb_inc(1);
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -512,7 +501,6 @@ async fn run_cli(cli: Cli) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
#[instrument(fields(indicatif.pb_show=1))]
|
|
||||||
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let cli = Cli::parse();
|
let cli = Cli::parse();
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,15 @@ use tracing_tracy::TracyLayer;
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
pub static ref PB_PROGRESS_STYLE: ProgressStyle = ProgressStyle::with_template(
|
pub static ref PB_PROGRESS_STYLE: ProgressStyle = ProgressStyle::with_template(
|
||||||
"{span_child_prefix}{bar:30} {wide_msg} [{elapsed_precise}] {pos:>7}/{len:7}"
|
"{span_child_prefix} {wide_msg} {bar:10} ({elapsed}) {pos:>7}/{len:7}"
|
||||||
|
)
|
||||||
|
.expect("invalid progress template");
|
||||||
|
pub static ref PB_TRANSFER_STYLE: ProgressStyle = ProgressStyle::with_template(
|
||||||
|
"{span_child_prefix} {wide_msg} {binary_bytes:>7}/{binary_total_bytes:7}@{decimal_bytes_per_sec} ({elapsed}) {bar:10} "
|
||||||
)
|
)
|
||||||
.expect("invalid progress template");
|
.expect("invalid progress template");
|
||||||
pub static ref PB_SPINNER_STYLE: ProgressStyle = ProgressStyle::with_template(
|
pub static ref PB_SPINNER_STYLE: ProgressStyle = ProgressStyle::with_template(
|
||||||
"{span_child_prefix}{spinner} {wide_msg} [{elapsed_precise}] {pos:>7}/{len:7}"
|
"{span_child_prefix}{spinner} {wide_msg} ({elapsed}) {pos:>7}/{len:7}"
|
||||||
)
|
)
|
||||||
.expect("invalid progress template");
|
.expect("invalid progress template");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue