Delete project and system hook logs in batches
When a user attempts to destroy a Web hook, the database will attempt to delete all the associated Web hook logs. However, as we have seen in https://gitlab.com/gitlab-org/gitlab/-/issues/21940, the table may be too bloated or the number of rows too large that this deletion can time out due to a 15-second statement timeout. We rectify this situation by deleting these logs in batches of 1000 outside of a transaction. That should be acceptable since old logs get pruned periodically anyway, and when a Web hook is destroyed it's more important that the destruction makes progress and eventually removes the hook. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/21940
显示
- app/controllers/admin/hooks_controller.rb 1 个添加, 1 个删除app/controllers/admin/hooks_controller.rb
- app/controllers/concerns/hooks_execution.rb 15 个添加, 0 个删除app/controllers/concerns/hooks_execution.rb
- app/controllers/projects/hooks_controller.rb 1 个添加, 1 个删除app/controllers/projects/hooks_controller.rb
- app/services/web_hooks/destroy_service.rb 78 个添加, 0 个删除app/services/web_hooks/destroy_service.rb
- app/workers/all_queues.yml 8 个添加, 0 个删除app/workers/all_queues.yml
- app/workers/web_hooks/destroy_worker.rb 27 个添加, 0 个删除app/workers/web_hooks/destroy_worker.rb
- changelogs/unreleased/sh-destroy-hook-logs-in-batches.yml 5 个添加, 0 个删除changelogs/unreleased/sh-destroy-hook-logs-in-batches.yml
- config/application.rb 2 个添加, 2 个删除config/application.rb
- config/sidekiq_queues.yml 2 个添加, 0 个删除config/sidekiq_queues.yml
- ee/app/controllers/groups/hooks_controller.rb 1 个添加, 1 个删除ee/app/controllers/groups/hooks_controller.rb
- ee/lib/api/group_hooks.rb 3 个添加, 1 个删除ee/lib/api/group_hooks.rb
- ee/spec/controllers/groups/hooks_controller_spec.rb 8 个添加, 0 个删除ee/spec/controllers/groups/hooks_controller_spec.rb
- lib/api/project_hooks.rb 3 个添加, 1 个删除lib/api/project_hooks.rb
- lib/api/system_hooks.rb 3 个添加, 1 个删除lib/api/system_hooks.rb
- lib/tasks/gitlab/web_hook.rake 4 个添加, 1 个删除lib/tasks/gitlab/web_hook.rake
- locale/gitlab.pot 6 个添加, 0 个删除locale/gitlab.pot
- spec/controllers/admin/hooks_controller_spec.rb 8 个添加, 0 个删除spec/controllers/admin/hooks_controller_spec.rb
- spec/controllers/projects/hooks_controller_spec.rb 8 个添加, 0 个删除spec/controllers/projects/hooks_controller_spec.rb
- spec/services/web_hooks/destroy_service_spec.rb 56 个添加, 0 个删除spec/services/web_hooks/destroy_service_spec.rb
- spec/support/shared_examples/controllers/destroy_hook_shared_examples.rb 36 个添加, 0 个删除...ared_examples/controllers/destroy_hook_shared_examples.rb
加载中
想要评论请 注册 或 登录