diff --git a/influxdb3/src/commands/serve.rs b/influxdb3/src/commands/serve.rs
index 5923bad7334..c507e8a50b2 100644
--- a/influxdb3/src/commands/serve.rs
+++ b/influxdb3/src/commands/serve.rs
@@ -550,7 +550,7 @@ pub async fn command(config: Config) -> Result<()> {
.register_node(
&config.node_identifier_prefix,
num_cpus as u64,
- influxdb3_catalog::log::NodeMode::Core,
+ vec![influxdb3_catalog::log::NodeMode::Core],
)
.await?;
let node_def = catalog
diff --git a/influxdb3_catalog/src/catalog.rs b/influxdb3_catalog/src/catalog.rs
index 72e40822315..b8fe6f3de35 100644
--- a/influxdb3_catalog/src/catalog.rs
+++ b/influxdb3_catalog/src/catalog.rs
@@ -6,7 +6,7 @@ use indexmap::IndexMap;
use influxdb3_id::{ColumnId, DbId, SerdeVecMap, TableId};
use iox_time::{Time, TimeProvider};
use object_store::ObjectStore;
-use observability_deps::tracing::{debug, info, warn};
+use observability_deps::tracing::{debug, info, trace, warn};
use parking_lot::RwLock;
use schema::{Schema, SchemaBuilder};
use serde::{Deserialize, Serialize};
@@ -174,7 +174,7 @@ impl Catalog {
// will be the sequence number that the catalog is updated to.
let mut permit = CATALOG_WRITE_PERMIT.lock().await;
*permit = self.sequence_number().next();
- debug!(
+ trace!(
next_sequence = permit.get(),
"got permit to write to catalog"
);
@@ -198,10 +198,6 @@ impl Catalog {
) -> CatalogBatch {
let batch_sequence = batch.sequence_number().get();
let current_sequence = self.sequence_number().get();
- debug!(
- batch_sequence,
- current_sequence, "apply ordered catalog batch"
- );
assert_eq!(
batch_sequence,
current_sequence + 1,
@@ -421,7 +417,7 @@ impl InnerCatalog {
sequence: CatalogSequenceNumber,
) -> Result