Story #3934
closedRPM Support - Story #3202: As a user, I can sync RPM/SRPM/Erratum from a remote Yum/DNF repository
As a plugin writer, I can have a stage that removes duplicates
100%
Description
Problem¶
Both rpm and docker have a situation where content units can mutate. The DeclarativeVersion will treat a mutated content unit as a new unit and add it to a RepositoryVersion with sync. This is in addition to the previous version (the unmutated one). This effectively adds the same unit to the RepositoryVersion twice.
What would be great is if the older one would be removed by DeclarativeVersion as part of the pipeline in some kind of configurable way.
Solution¶
Make a new stage called RemoveDuplicates that takes two parameters 'type' and 'field_list' (or tuple). 'type' is the content unit type that the stage should inspect. 'field_list' is the list of field names that needs to be unique within the RepositoryVersion. For example for RPM it will configure this stage with type=pulp_rpm.UpdateRecord and field_list=['id']. A Docker example would use the stage twice, first: `type=pulp_docker.Tag`, `field_list=['name', 'manifest']`; second: `type=pulp_docker.Tag`, field_list=`['name', 'manifest_list']`
This new stage will unassociate any units that are of type=type with the same field names as one of the units emitted in the DeclarativeContent stream. It will be a batching stage, handling batches of units at a time. (Note, batches might perform poorly here, since multiple types may be flowing through the stream.)
The stage can be used directly by plugin writers. This funcitonality will also be added as an option to DeclarativeVersion called remove_duplicates
which will take the following form:
[{
'type': 'pulp_rpm.UpdateRecord',
'field_names': ['id']
}]
Notice how the stage takes only 1 duplicate type, but the DeclarativeVersion takes a list of them. The DeclarativeVersion will create one RemoveDuplicates stage for each item in the list, making the pipeline a variable length depending on the data passed into DeclarativeVersion
.
These extra stages should be run before the AssociateContent stage.
Related issues
Updated by daviddavis about 6 years ago
- Subject changed from Remove duplicate UpdateRecords after performing sync to Remove duplicate UpdateRecords for repos after performing sync
Updated by bmbouter about 6 years ago
- Tracker changed from Task to Story
- Project changed from RPM Support to Pulp
- Subject changed from Remove duplicate UpdateRecords for repos after performing sync to As a plugin writer, I can have a stage that removes duplicates
- Description updated (diff)
- Sprint/Milestone deleted (
Pulp 3 RPM MVP)
Rewriting to be a generalized core stage.
Updated by bmbouter about 6 years ago
In order to work on this, it would be best if we could have a pulp-smash test committed that causes a mutated erratum associated to a repo version in addition to the original, unmutated erratum.
Updated by daviddavis about 6 years ago
bmbouter, agreed. Is there a pulp 2 smash test for this scenario that we could re-use?
Updated by daviddavis about 6 years ago
- Blocks Task #3954: Prevent duplicate Package content in repos added
Updated by daviddavis about 6 years ago
- Blocks Task #4028: Prevent duplicate files in repositories added
Updated by daviddavis about 6 years ago
Two comments on this:
- I think that this needs to accept a list of fields instead of a single field. Consider the case of duplicate rpms which are unique by nevra (5 fields) or docker tags (3 fields: name, manifest__pk, manifest_list__pk) as a docker repo could have two tags with the same name (one for a manifest and one for a manifest_list).
- Also, I wonder if this field_list should be defined on the content class kind of like how we define the natural key uniqueness on Content now.
Updated by amacdona@redhat.com almost 6 years ago
- Related to Story #4172: Remove duplicate tags from repository during sync added
Updated by amacdona@redhat.com almost 6 years ago
- Description updated (diff)
- Groomed changed from No to Yes
- Sprint Candidate changed from No to Yes
Updated by amacdona@redhat.com almost 6 years ago
- Related to deleted (Story #4172: Remove duplicate tags from repository during sync)
Updated by amacdona@redhat.com almost 6 years ago
- Blocks Story #4172: Remove duplicate tags from repository during sync added
Updated by amacdona@redhat.com almost 6 years ago
- Status changed from NEW to ASSIGNED
- Assignee set to amacdona@redhat.com
Updated by amacdona@redhat.com almost 6 years ago
- Status changed from ASSIGNED to POST
Updated by amacdona@redhat.com almost 6 years ago
- Status changed from POST to MODIFIED
- % Done changed from 0 to 100
Applied in changeset commit:pulpcore-plugin|c320a0d1bce8cd68ff5cc56d1f6fb023ff72ad64.
Updated by bmbouter almost 5 years ago
- Status changed from MODIFIED to CLOSED - CURRENTRELEASE