Bug #38205
openOrphan deletion fails with "The repository version cannot be deleted because it (or its publications) are currently being used to distribute content. Please update the necessary distributions first."
Description
Specs:
OS - EL8
CPU - 4 core
RAM - 20GB
Storage - 1TB for /var
Foreman - 3.11.0
Katello - 4.13.0
Pulpcore - 2.0.1
Issue:
CLI execution of "foreman-rake katello:delete_orphaned_content" starts the expected cleanup task which then fails with "The repository version cannot be deleted because it (or its publications) are currently being used to distribute content. Please update the necessary distributions first."
Expectation:
Orphaned content is cleaned off disk
Notes:
We do NOT use Content Views, all client machines use the Default Content View from the Library. This was done as we could find no way to automate creation/publication of a Content View every time a repo was sync'd. Since the Default View does auto-update after a repository sync we simply use that, so there is no "distribution" to update. Thinking more about this it might be expected behavior and if so don't hesitate to tear me a new one :) Please let me know if I need to clarify or provide more data.
Updated by Ian Ballou about 2 months ago
ยท Edited
- Status changed from New to Need more information
Hi there,
Pulp somewhat recently stopped users from deleting repository versions that are distributed via Pulp distributions. Katello is supposed to know all repository versions that are being distributed, and so this bug technically should not be hit unless a task fails or if Pulp is being used outside of Katello (like for hosting your own separate repos). Katello assumes it has complete control of Pulp.
With that said, to help you out, we can assist in finding the extra distribution that you need to delete. Then orphan cleanup should work just fine.
1. Open up the foreman console via `foreman-rake console`.
2. Run
PulpcoreClient::DistributionsApi.new(PulpcoreClient::ApiClient.new(SmartProxy.pulp_primary.pulp3_configuration(PulpcoreClient::Configuration))).list(per_page: 1000).results.map(&:pulp_href) - ::Katello::Pulp3::DistributionReference.select(:href).pluck(:href)
-> The output should be all of the Pulp distributions that Katello does not know. There is likely one that looks like `/pulp/api/v3/distributions/core/artifacts/.../` that shouldn't be deleted since it's for contentguard, which should not be causing your error here.
4. Inspect each href using `sudo pulp show --href <href>` to make sure it doesn't look like anything you need.
5. If it looks extra, delete it:
sudo pulp --force <rpm/container/file/etc> destroy --href <href>
6. Repeat step (5) for any remaining hrefs that Katello does not know about.
If you need more help, I might suggest we take this conversation to https://community.theforeman.org/tags/c/support/10/katello
Updated by Quinn James about 1 month ago
- Status changed from Need more information to Closed
- Triaged changed from No to Yes
We decided to close this Redmine out due to two weeks of needinfo. If you still need assistance with this, please feel free to open a support request.
Updated by Ian Ballou about 1 month ago
This may have been the cause since the error seen by users is the same: https://projects.theforeman.org/issues/38218
Updated by Ian Ballou about 1 month ago
- Category set to Repositories
- Status changed from Closed to New
Opening back up -- we realized that more users might hit this issue for a variety of reasons, especially on smart proxies since only truly orphaned distributions get deleted (which theoretically, with the latest Pulp changes, won't exist any more).
We need to look into how these extra distributions can be cleaned up on both the Katello server and on smart proxies. On the Katello server, we can theoretically delete all distributions that we don't see in our database. On smart proxies, since we don't track the distributions, we'll need to look into getting the list of distributed paths, looking up distributions from those paths, and deleting the rest.
Updated by Ian Ballou about 1 month ago
- Target version changed from Katello 4.16.0 to Katello 4.17.0
Updated by Ian Ballou 27 days ago
- Red Hat JIRA set to SAT-31400
It looks like this bug may be caused by smart proxies distributing out of date repository versions. In one reproducer analysis, the smart proxy was found to have a repo with 3 repository versions. However, version 2 was the one being distributed. So, orphan cleanup found version 3 and assumed it was being distributed since it was the latest, but this was not the case.
Therefore, anyone who hits this bug likely had some previous sync that failed to refresh the distributions for some reason. A complete sync of the affected repositories might fix the issue.
Updated by The Foreman Bot 7 days ago
- Status changed from New to Ready For Testing
- Assignee set to Ian Ballou
- Pull request https://github.com/Katello/katello/pull/11355 added