Skip to content

Add index on historical_data (recorded_at) to improve queries

What does this MR do?

This MR adds an index on historical_data (recorded_at) to improve some queries.

We have the following places where we query on historical_data.recorded_at:

  1. https://gitlab.com/gitlab-org/gitlab/-/blob/ebf78c1afb1e9f067ac5c45916efbb02c2329dea/ee/app/models/gitlab/seat_link_data.rb#L68
  2. https://gitlab.com/gitlab-org/gitlab/-/blob/ebf78c1afb1e9f067ac5c45916efbb02c2329dea/ee/app/models/license.rb#L537
  3. https://gitlab.com/gitlab-org/gitlab/-/blob/ebf78c1afb1e9f067ac5c45916efbb02c2329dea/ee/app/models/license.rb#L544

These all benefit from having an index on historical_data(recorded_at).

Execution plans before:

  1. https://console.postgres.ai/gitlab/gitlab-production-tunnel-pg12/sessions/6062/commands/20507
  2. https://console.postgres.ai/gitlab/gitlab-production-tunnel-pg12/sessions/6062/commands/20506
  3. https://console.postgres.ai/gitlab/gitlab-production-tunnel-pg12/sessions/6062/commands/20508

Execution plans after:

  1. https://console.postgres.ai/gitlab/gitlab-production-tunnel-pg12/sessions/6062/commands/20513
  2. https://console.postgres.ai/gitlab/gitlab-production-tunnel-pg12/sessions/6062/commands/20512
  3. https://console.postgres.ai/gitlab/gitlab-production-tunnel-pg12/sessions/6062/commands/20511.

We can see Seq Scan is changed to Index Scan after adding the index.

While working on this I've noticed we have HistoricalData.up_until scope (using this column) that is not used, so removed it as part of this MR.

Related to #334761 (closed).

Database migrations

Up

$ bundle exec rails db:migrate:up VERSION=20210818034001
== 20210818034001 IndexHistoricalDataOnRecordedAt: migrating ==================
-- transaction_open?()
   -> 0.0000s
-- index_exists?(:historical_data, :recorded_at, {:name=>"index_historical_data_on_recorded_at", :algorithm=>:concurrently})
   -> 0.0017s
-- execute("SET statement_timeout TO 0")
   -> 0.0005s
-- add_index(:historical_data, :recorded_at, {:name=>"index_historical_data_on_recorded_at", :algorithm=>:concurrently})
   -> 0.0051s
-- execute("RESET statement_timeout")
   -> 0.0005s
== 20210818034001 IndexHistoricalDataOnRecordedAt: migrated (0.0257s) =========

Down

$ bundle exec rails db:migrate:down VERSION=20210818034001
== 20210818034001 IndexHistoricalDataOnRecordedAt: reverting ==================
-- transaction_open?()
   -> 0.0000s
-- indexes(:historical_data)
   -> 0.0025s
-- execute("SET statement_timeout TO 0")
   -> 0.0005s
-- remove_index(:historical_data, {:algorithm=>:concurrently, :name=>"index_historical_data_on_recorded_at"})
   -> 0.0035s
-- execute("RESET statement_timeout")
   -> 0.0006s
== 20210818034001 IndexHistoricalDataOnRecordedAt: reverted (0.0140s) =========

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

Related to #334761 (closed)

Edited by Andreas Brandl

Merge request reports