Project

Profile

Help

Issue #4246

Updated by bmbouter over 5 years ago

Say you sync a repo with Remote.policy=on_demand and you get unit foo but no Artifact. 

 Now you sync a different repo w/ a different remote with Remote.policy=on_demand and that repo also contains unit foo. During this second sync the stages API will recognize the unit is already in Pulp and will not create it. It will also not create a RemoteArtifact. It will associate the existing unit foo with the new repo version. 

 Now delete the first Remote, which will delete all RemoteArtifact objects. 

 Now a user goes to fetch foo from the second repo. The user will receive a 404 from the content app because when it find the ContentArtifact, and no Artifact to serve it will *not* find a RemoteArtifact like it should. Thus the content app can only 404. 

 I expect since there is still a Remote that can remotely fetch that Artifact that if should be fetched. 

 Overall I think every sync needs to ensure that in the case where a Content unit is already know to Pulp that the Stages pipeline will still create a RemoteArtifact object where today it does not. 

 h2. Solution 

 1. have the RemoteArtifact codepath be created even if the ContentUnit exists. (currently it doesn't run at all if .pk != None) 
 2. Have RemoteArtifact switch to bulk_get_or_create() to handle the IntegrityErrors.

Back