Skip to content

Commit

Permalink
Reduce info logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed Jan 8, 2025
1 parent b581ce5 commit ca401c9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/arroyo-connectors/src/filesystem/sink/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use futures::{stream::FuturesUnordered, Future};
use futures::{stream::StreamExt, TryStreamExt};
use object_store::{multipart::PartId, path::Path, MultipartId};
use tokio::sync::mpsc::{Receiver, Sender};
use tracing::{info, warn};
use tracing::{debug, info, warn};
use uuid::Uuid;

use arroyo_types::*;
Expand Down Expand Up @@ -507,7 +507,7 @@ async fn from_checkpoint(
parts_to_add,
trailing_bytes,
} => {
info!("finishing file for path {:?}", path);
debug!("finishing file for path {:?}", path);
let multipart_id = object_store
.start_multipart(path)
.await
Expand All @@ -527,7 +527,7 @@ async fn from_checkpoint(
.await?;
parts.push(upload_part);
}
info!(
debug!(
"parts: {:?}, pushed_size: {:?}, multipart id: {:?}",
parts, pushed_size, multipart_id
);
Expand Down
4 changes: 2 additions & 2 deletions crates/arroyo-state/src/tables/global_keyed_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use parquet::{
basic::ZstdLevel,
file::properties::{EnabledStatistics, WriterProperties},
};
use tracing::info;
use tracing::debug;

use std::iter::Zip;

Expand Down Expand Up @@ -244,7 +244,7 @@ impl TableEpochCheckpointer for GlobalKeyedCheckpointer {
bail!("global keyed data expects KeyedData, not record batches")
}
TableData::CommitData { data } => {
info!("received commit data");
debug!("received commit data");
// set commit data, failing if it was already set
if self.commit_data.is_some() {
bail!("commit data already set for this epoch")
Expand Down

0 comments on commit ca401c9

Please sign in to comment.