Skip to content

Commit

Permalink
do not ever enable store-side compaction during rrd comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jan 10, 2025
1 parent a1331e1 commit bbe01a7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion crates/top/rerun/src/commands/rrd/compare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,14 @@ fn compute_uber_table(
let msg = msg.context("decode rrd message")?;
stores
.entry(msg.store_id().clone())
.or_insert_with(|| re_entity_db::EntityDb::new(msg.store_id().clone()))
.or_insert_with(|| {
re_entity_db::EntityDb::with_store_config(
msg.store_id().clone(),
// We must make sure not to do any store-side compaction during comparisons, or
// this will result in flaky roundtrips in some instances.
re_chunk_store::ChunkStoreConfig::ALL_DISABLED,
)
})
.add(&msg)
.context("decode rrd file contents")?;
}
Expand Down

0 comments on commit bbe01a7

Please sign in to comment.