Skip to content

Commit

Permalink
Merge pull request #18596 from vbotbuildovich/backport-pr-18526-v23.3…
Browse files Browse the repository at this point in the history
….x-482

[v23.3.x] archival: Disable housekeeping jobs on startup
  • Loading branch information
Lazin authored May 21, 2024
2 parents bb3dcd0 + 1ba1e3f commit bb593cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/v/archival/ntp_archiver_service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,13 @@ ntp_archiver::ntp_archiver(
_next_housekeeping = _housekeeping_jitter();
});

if (_local_segment_merger) {
_local_segment_merger->set_enabled(false);
}
if (_scrubber) {
_scrubber->set_enabled(false);
}

_start_term = _parent.term();
// Override bucket for read-replica
if (_parent.is_read_replica_mode_enabled()) {
Expand Down

0 comments on commit bb593cd

Please sign in to comment.