Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/coord/src/coord.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1192,6 +1192,17 @@ impl Coordinator {
fn persisted_table_allow_compaction(&self, since_updates: &[(GlobalId, Antichain<Timestamp>)]) {
let mut table_since_updates = vec![];
for (id, frontier) in since_updates.iter() {
// HACK: Avoid the "failed to compact persisted tables" error log at
// restart, by not trying to allow compaction on the minimum
// timestamp.
if !frontier
.elements()
.iter()
.any(|x| *x > Timestamp::minimum())
{
continue;
}

// Not all ids will be present in the catalog however, those that are
// in the catalog must also have their dependencies in the catalog as
// well.
Expand Down