Project

Profile

Help

Story #3209

closed

As a user, I have Repository Versions

Added by dkliban@redhat.com over 6 years ago. Updated over 4 years ago.

Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Category:
-
Sprint/Milestone:
Start date:
Due date:
% Done:

100%

Estimated time:
(Total: 0:00 h)
Platform Release:
Groomed:
No
Sprint Candidate:
No
Tags:
Sprint:
Quarter:

Description

This is the parent task for all stories/tasks related to adding RepositoryVersions.

Repository Version CRUD

CREATE:

New Repository Version can be created in 2 ways, (1) directly with the Repository Versions Viewset (3234) and (2) action endpoints defined by each plugin (see "actions" below).

Manual add/remove is done by a POST to /v3/repositories/<repo_id>/versions/. The user specifies the content to add and the content to remove in the POST body. The RepositoryVersions Viewset will deploy the task that creates a RepositoryVersion.

Stories:
https://pulp.plan.io/issues/3234 Create a new Repository Version
/v3/repositories/<repo_uuid>/versions/ POST

LIST:

list (v3/repositories/<repo_uuid>/versions/) and read (v3/repositories/<repo_uuid>/versions/<number>/) is handled by the Repository Version serializer and provides content href, added href, and removed href.

Stories:
https://pulp.plan.io/issues/3218 Add detail routes to viewset and serializer
/v3/repositories/<repo_uuid>/versions/<number>/ should include links to detail routes, including:

  • content href
  • added content href
  • removed content href

https://pulp.plan.io/issues/3235 On Repositories Serializer, return href for latest version
https://pulp.plan.io/issues/3238 Filters for RepositoryVersions

Bugs:
https://pulp.plan.io/issues/3230 - bugfix - v3/repositories/<deleted_repo>/versions/ should return 404

UPDATE: disabled

RepositoryVersions are immutable, so the Viewset should not inherrit from the update mixin, so PUT and PATCH requests return a 405 (Method not allowed)

DELETE:

All versions are able to be deleted. The latest version is simply deleted and the latest version becomes the previous latest. When a version other than latest is deleted, the changes made by that version are "squashed" into the following version.

For example, Repository Av1 contains 2 packages (a and b). Av2 Adds version package c. Av3 removes package a. Av4 removes package b.
Av1 (a, b)
Av2 (a, b, c) [+c]
Av3 (b, c) [-a]
Av4 (c) [-b]

If Av2 is deleted, Av3 now also adds "c". Av3(b, c) [+c, -a]
If Av4 is deleted, A.latest() become Av3 and contains (b, c)

When a user deletes a repository version, the content contained by all following versions does not change, but the content added and removed in the following version changes.
When the latest version is deleted, Repository.latest rolls back to the previous version.

Stories:
https://pulp.plan.io/issues/3219 Delete Repository Versions:
RepositoryVersion.latest is deleted
RepositoryVersion that is not latest is "squashed"

Bugs
https://pulp.plan.io/issues/3233 Squash bug

Actions that create a Repository Version (including sync)

If Pulp performs an action to create a Repository Version (as opposed to a manual add/remove), all of the logic is owned by each plugin. Interactions with the pulpcore database (RepositoryVersion, Repository, RepositoryContent) are handled by pulpcore utilities that are part of the plugin API. The utilities will provide a working directory, ensure that writes happen in transactions, clean up pulpcore database after failures and crashes.

This change alters the plugin API. "sync", "publish" and other actions will be tasks that are written by each plugin (instead of a function on the model). The tasks are deployed by Plugin Viewsets which create action endpoints in the REST API.

Transactions and Cleanup stories:
https://pulp.plan.io/issues/3222 Add complete flag, and mark complete when action is finished.
https://pulp.plan.io/issues/3226 Cleanup incomplete Repository Versions after a worker crash
https://pulp.plan.io/issues/3225 Update Changeset with new arguments (repo_version, not old_version and new_version)

Plugin API changes:
https://pulp.plan.io/issues/3074 Remove sync code from pulpcore. Also acts as parent task for Plugin Stories:
https://pulp.plan.io/issues/3285 Provide context manager to handle RepositoryVersion creation, finalization, and cleanup.

Plugin Stories
https://pulp.plan.io/issues/3260- File plugin sync
https://pulp.plan.io/issues/3294 - Python plugin sync

Actions that create a Publication (including publish)

Actions that create Publications are handled similarly to actions the create RepositoryVersions. All of the logic is owned by each plugin. Interactions with the pulpcore database (Publication, Repository) are handled by pulpcore utilities that are part of the plugin API.

Stories:
https://pulp.plan.io/issues/3221 Move publish code from model to task
https://pulp.plan.io/issues/3295 Write util to assist with publish (context manager?)

Plugin stories:
https://pulp.plan.io/issues/3296 file publish story

Docs for Plugin Writer:

https://pulp.plan.io/issues/3220 Plugin writer HOWTO guide to implement sync (and copy)
https://pulp.plan.io/issues/3298 Plugin writer HOWTO guide to implement publish

Plugin Docs:

https://pulp.plan.io/issues/3249 Update file plugin docs for repository versions
https://pulp.plan.io/issues/3300 Update python plugin docs for repository versions

Why this design?

Motivation

The ContentUnits added to a repository change over time, but Pulp only stores the current state. This prevents a lot of great things like rolling back to a particluar snapshot, or understanding exactly what content is in place at any given time.

Solution

Introducing the Repository Version, which represents the ContentUnits in a repository after any given operation. For example, each of the following operations will produce a repository version.

  • Sync with an importer
  • Add a set units to a repository
  • Remove a set of units from a repository

Any repository version can be deleted. Publications are changed to publish a specific RepositoryVersion, not just the latest content in a given repo.

API examples

POST /api/v3/importers/{type}/{importer_id}/sync/ Use plugin to create a new RepositoryVersion.
POST /api/v3/repositories/{repo_id}/versions/  # create the new RepositoryVersion. specify units to add, and/or units to remove
GET /api/v3/repository/{repo_id}/versions/{number}  # The resource for a single repo version
GET /api/v3/repositories/{repo_id}/versions/<id>/content/  # paginated list of all content in particular version
GET /api/v3/repositories/{repo_id}/versions/<id>/added_content/  # paginated list of content added when a particular version was created
GET /api/v3/repositories/{repo_id}/versions/<id>/removed_content/  # paginated list of content removed when a particular version was created

Technical details

The RepositoryVersion table stores all repository versions for all repositories. A repository version is a set of content.

RepositoryVersion

  • [pk] id - The primary key.
  • [fk] content - The associated repository.
  • created - When the repository version was created.
  • number - A positive integer that uniquely identifies a version of a specific repository. Each new version for a repository should have this field set to 1 + the most recent version.
  • complete - When true, the action that creates the RepositoryVersion is finished and the version is ready to be used.

The RepositoryContent table stores association between a repository version and its contained content.

RepositoryContent

  • [pk] id - The primary key.
  • [fk] content - The associated content.
  • [fk] repository - The associated repository.
  • [fk] version_added - The RepositoryVersion which added the referenced Content.
  • [fk] version_removed - The RepositoryVersion which removed the referenced Content.

Sub-issues 26 (0 open26 closed)

Refactor #3074: Move sync logic from models to tasksCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Task #3184: Add complete field to Publication. CLOSED - CURRENTRELEASEmilan

Actions
Story #3186: Rewrite tasking system labels for versioned repositoriesCLOSED - CURRENTRELEASEdaviddavis

Actions
Story #3218: As an authenticated user, I can list repository version content, added content, removed contentCLOSED - CURRENTRELEASEdaviddavis

Actions
Story #3219: As an authenticated user, I can delete any repository version.CLOSED - CURRENTRELEASEdaviddavis

Actions
Task #3220: Expand plugin writer's guide to include RepositoryVersion creating actions (including sync)CLOSED - CURRENTRELEASEbizhang

Actions
Task #3221: Move publish logic from models to tasksCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Task #3222: Add 'complete' attribute to the RepositoryVersion modelCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Task #3225: Update Changeset API to use repository versionsCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Story #3226: As a user, I am guaranteed that my incomplete repository versions are cleaned up after a crashCLOSED - CURRENTRELEASEjortel@redhat.com

Actions
Issue #3230: Repository version REST API returns 200 instead of 404CLOSED - CURRENTRELEASEdaviddavisActions
Issue #3233: Version incorrectly says that it removed a content unitCLOSED - CURRENTRELEASEbizhangActions
Story #3234: As an authenticated user, I can create a new version by adding or removing content to the latest version.CLOSED - CURRENTRELEASEdkliban@redhat.com

Actions
Story #3235: As an authenticated user, when viewing a repository, I can discover a href to the latest version of a repository.CLOSED - CURRENTRELEASEdaviddavis

Actions
Story #3238: As an authenticated user, I can filter repository versionsCLOSED - CURRENTRELEASEbizhang

Actions
File Support - Task #3249: Update pulp_file READMECLOSED - CURRENTRELEASEdaviddavis

Actions
File Support - Refactor #3260: Move sync logic from Importer model to a taskCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Story #3274: As a user, the task created by sync includes the RepositoryVersion created_resourceCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Story #3285: As a plugin writer, I have a tool that helps me write tasks that create RepositoryVersionsCLOSED - CURRENTRELEASEbizhang

Actions
Python Support - Task #3294: Update Python plugin to sync with versioned repositoriesMODIFIEDamacdona@redhat.com

Actions
Story #3295: As a plugin writer, I have a tool that helps me write tasks that create PublicationsCLOSED - CURRENTRELEASEjortel@redhat.com

Actions
File Support - Refactor #3296: Move publish logic from Publisher model to a taskCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
Task #3298: Expand plugin writer's guide to include Publication creating actions (including publish)CLOSED - CURRENTRELEASECodeHeeler

Actions
Python Support - Task #3300: Update plugin docs after Versioned Repo changes are mergedCLOSED - COMPLETE

Actions
Story #3312: As a user, Publications show me their RepositoryVersionCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions
File Support - Story #3324: As a user, I can publish any repository versionCLOSED - CURRENTRELEASEdkliban@redhat.com

Actions
Actions #1

Updated by bmbouter about 6 years ago

  • Subject changed from Repository Versions tracker to As a user, I have Repository Versions
Actions #2

Updated by dkliban@redhat.com about 6 years ago

  • Description updated (diff)
Actions #3

Updated by dkliban@redhat.com about 6 years ago

  • Description updated (diff)
Actions #4

Updated by dkliban@redhat.com about 6 years ago

  • Description updated (diff)
Actions #5

Updated by dkliban@redhat.com about 6 years ago

  • Description updated (diff)
Actions #6

Updated by bmbouter about 6 years ago

  • Description updated (diff)

Rewriting the description with details.

Actions #7

Updated by bmbouter about 6 years ago

  • Description updated (diff)

Adding in the POST to create a RepositoryVersion in the description.

Actions #8

Updated by dkliban@redhat.com about 6 years ago

  • Description updated (diff)
Actions #9

Updated by dkliban@redhat.com about 6 years ago

  • Description updated (diff)
Actions #10

Updated by amacdona@redhat.com about 6 years ago

  • Description updated (diff)
Actions #11

Updated by amacdona@redhat.com about 6 years ago

  • Description updated (diff)
Actions #12

Updated by amacdona@redhat.com about 6 years ago

  • Description updated (diff)
Actions #13

Updated by amacdona@redhat.com about 6 years ago

  • Description updated (diff)
Actions #14

Updated by amacdona@redhat.com almost 6 years ago

  • Status changed from NEW to MODIFIED
  • Assignee set to amacdona@redhat.com

This was a parent task. The planning work is complete, the docs stories are groomed and ready to be added to the sprint.

Actions #15

Updated by dkliban@redhat.com almost 6 years ago

  • Sprint/Milestone set to 3.0.0
Actions #16

Updated by bmbouter almost 5 years ago

  • Tags deleted (Pulp 3, Pulp 3 MVP)
Actions #17

Updated by bmbouter over 4 years ago

  • Status changed from MODIFIED to CLOSED - CURRENTRELEASE

Also available in: Atom PDF