Skip to content

Add a data migration to remove existing duplicates of DastSiteTokens

What does this MR do?

This merge request adds a data migration to remove the existing duplicates of DastSiteToken with the same URL and project.

The data migration is a regular migration because:

  • this is a low traffic feature with 371 rows in the dast_site_tokens table on gitlab.com.
  • it should be fast. It currently runs in 1.4s
  • To make sure that RemoveDuplicateDastSiteTokens has run before before we run the follow-up MR. The follow-up merge request to this one will be one that adds a unique index.

This MR is responsible for the following tasks required for issue #338188 (closed).

add a data migration to remove existing duplicates add a migration that adds a composite index (project_id, url)

Raw SQL to find the DastSiteToken with duplications:

SELECT DISTINCT
    array_agg(id) AS ids
FROM
    "dast_site_tokens"
GROUP BY
    "dast_site_tokens"."project_id",
    "dast_site_tokens"."url"
HAVING (count(*) > 1)

Time: 0.624 ms

Query Plan

Migration execution time = 1.4s

Migration 20210823132600 up

== 20210823132600 RemoveDuplicateDastSiteTokens: migrating ====================
== 20210823132600 RemoveDuplicateDastSiteTokens: migrated (0.0035s) ===========

Migration 20210823132600 down

== 20210823132600 RemoveDuplicateDastSiteTokens: reverting ====================
== 20210823132600 RemoveDuplicateDastSiteTokens: reverted (0.0000s) ===========

Migration 20210826193907 up

== 20210826193907 AddUniqueIndexDastSiteTokenProjectIdAndUrl: migrating =======
-- transaction_open?()
   -> 0.0000s
-- index_exists?(:dast_site_tokens, [:project_id, :url], {:name=>"index_dast_site_token_on_project_id_and_url", :unique=>true, :algorithm=>:concurrently})
   -> 0.0045s
== 20210826193907 AddUniqueIndexDastSiteTokenProjectIdAndUrl: migrated (0.0051s)

Migration 20210826193907 down

== 20210826193907 AddUniqueIndexDastSiteTokenProjectIdAndUrl: reverting =======
-- transaction_open?()
   -> 0.0000s
-- indexes(:dast_site_tokens)
   -> 0.0024s
-- execute("SET statement_timeout TO 0")
   -> 0.0005s
-- remove_index(:dast_site_tokens, {:algorithm=>:concurrently, :name=>"index_dast_site_token_on_project_id_and_url"})
   -> 0.0033s
-- execute("RESET statement_timeout")
   -> 0.0007s
== 20210826193907 AddUniqueIndexDastSiteTokenProjectIdAndUrl: reverted (0.0085s) 

Screenshots or Screencasts (strongly suggested)

How to setup and validate locally (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • 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
Edited by Marcos Rocha

Merge request reports

Loading