Skip to content

Delete all issuable todos asynchronously when issuable is destroyed [RUN ALL RSPEC] [RUN AS-IF-FOSS]

Patrick Bajao requested to merge 325689-delete-issuable-todos-async into master

What does this MR do?

The Issuable::DestroyService gets called for DELETE /api/projects/:id/merge_requests/:merge_request_iid endpoint.

When deleting an issuable (Issue or MergeRequest), the associated Todo records need to be deleted as well. Before this change, it was calling Todo#destroy on each associated todo that results to N+1 issues.

Deletion of todos is now being done asynchronously since it's possible that the deleted issuable has lots of associated todos and doing it synchronously can take time. This also makes it consistent with how we delete todos in other cases (other services can be found under app/services/todos/destroy/ directory).

Deletion is being done in batches to avoid statement timeouts in case there are a lot of todos to be deleted.

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Related to #325689 (closed)

Edited by 🤖 GitLab Bot 🤖

Merge request reports