Project

Profile

Help

Task #3184

Updated by jortel@redhat.com about 6 years ago

h2. Problem: 

 The creation of Publications happens in plugins, so some parts of this description apply to plugins only. The pulpcore changes should be limited to adding the field and preventing use of complete=False publications. The plugins should either update their code to prevent the transaction problem presented below, or use the Publication context manager to be written in https://pulp.plan.io/issues/3295 

 The current implementation of the publishing task starts an outer transaction.    This is undesirable because: 
 * Long running transactions can accumulate DB locks which can result in contention. 
 * Could exceed DB limitations on rollback segement. 
 * Prevents progress reports from being committed. 

 The following line needs to be removed: 

 <pre> 
 with transaction.atomic(): 
 </pre> 

 Without the outer transaction, the publication will be committed _half-baked_.    There needs to be a way to prevent the publication from being used before it is completely constructed.    Here is a recap of a list design discussion: 

 * Add an attribute called 'complete' to Publication which defaults to False. 
 * Update the viewset so that it excludes Publications that have complete=False 
 * Update the filterset for Publications to also exclude Publications that have complete=False 

 h2. This part of the solution: 

 # Add Publication.complete 
 # Obscure rendered by the API when Publication.complete=False 

Back