Refactor #4117
closedRefactor bulk_create calls in RpmContentUnitSaver
100%
Description
The implementation of RpmContentUnitSaver needs to not rely on attaching attributes to models and then reading those attributes back later. For background see comments around this one: https://pulp.plan.io/issues/4060#note-12
That is currently done in the rpm code here: https://github.com/pulp/pulp_rpm/blob/844336c1c55427851861491a50746c1c2af48d4e/pulp_rpm/app/tasks/synchronizing.py#L293-L327
Updated by bmbouter about 6 years ago
- Tracker changed from Issue to Refactor
- Subject changed from Rework bulk_create calls in ErratumContentUnitSaver to Refactor bulk_create calls in ErratumContentUnitSaver
- % Done set to 0
Updated by bmbouter about 6 years ago
We could use a zip() style which relies on the bulk_create order of items in and items out being the same. dalley confirmed in #django that it's implementation does preserve order today. Here is an example: https://github.com/pulp/pulp/compare/master...dralley:single-table-content?expand=1#diff-724178b047dc8948469adbef5243c6c0R126
Updated by ttereshc over 5 years ago
- Subject changed from Refactor bulk_create calls in ErratumContentUnitSaver to Refactor bulk_create calls in RpmContentUnitSaver
- Description updated (diff)
- Groomed changed from No to Yes
- Sprint Candidate changed from No to Yes
Updated by dalley over 5 years ago
- Status changed from NEW to ASSIGNED
- Assignee set to dalley
Updated by daviddavis over 5 years ago
- Sprint changed from Sprint 51 to Sprint 52
Updated by dalley over 5 years ago
- Status changed from ASSIGNED to NEW
- Assignee deleted (
dalley)
Working on higher priority items currently - anyone else can pick this up. I never got very far on my branch.
Updated by amacdona@redhat.com over 5 years ago
- Sprint changed from Sprint 53 to Sprint 54
Updated by ttereshc over 5 years ago
- Status changed from NEW to ASSIGNED
- Assignee set to ttereshc
Updated by ttereshc over 5 years ago
- Status changed from ASSIGNED to POST
Updated by ttereshc over 5 years ago
- Sprint changed from Sprint 54 to Sprint 55
Updated by dominiclay123@gmail.com over 5 years ago
- File clipboard-201906251113-1pik0.png added
Updated by bmbouter over 5 years ago
- File deleted (
clipboard-201906251113-1pik0.png)
Added by ttereshc over 5 years ago
Updated by ttereshc over 5 years ago
- Status changed from POST to MODIFIED
- % Done changed from 0 to 100
Applied in changeset 6f58b19bff7f42181a167509c222247ebb145c9a.
Updated by ttereshc almost 5 years ago
- Status changed from MODIFIED to CLOSED - CURRENTRELEASE
Stop using model attributes to carry related models to save later
Use extra_data attribute of DeclarativeContent instead.
closes #4117 https://pulp.plan.io/issues/4117