Actions
Issue #7185
closedforce_full rsync publish is done unnecessarily in some cases
Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Assignee:
-
Category:
-
Sprint/Milestone:
-
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
2.21.4
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Pulp 2
Sprint:
Quarter:
Description
A full rsync publish is done when some criteria are met (defined in https://github.com/pulp/pulp/blob/2-master/server/pulp/plugins/rsync/publish.py#L373). Some of the criteria don't need a full rsync publish to make the right content published to rsync distributor:
- When there's units removal since last rsync publish
- When there's predistributor publish failure since last rsync publish
Since it takes longer time to do full publish, especially for big repos containing lots of units, unnecessary full publish should be avoided by removing above criteria.
Actions
Remove unnecessary criteria of force_full rsync publish (#3997)
Rsync publish after units removal or failed predistributor publish doesn't have to be force_full publish, so remove them from criteria.
RepoPublishResult doesn't have distributor_config, so the criteria of predistributor_force_full doesn't work, remove it.
closes #7185 https://pulp.plan.io/issues/7185