Add index to file_store on ci_job_artifacts
This commit is contained in:
parent
adcdb25b01
commit
0ac5f1279e
3 changed files with 22 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Add index to file_store on ci_job_artifacts
|
||||||
|
merge_request: 18444
|
||||||
|
author:
|
||||||
|
type: performance
|
|
@ -0,0 +1,15 @@
|
||||||
|
class AddIndexToCiJobArtifactsFileStore < ActiveRecord::Migration
|
||||||
|
include Gitlab::Database::MigrationHelpers
|
||||||
|
|
||||||
|
DOWNTIME = false
|
||||||
|
|
||||||
|
disable_ddl_transaction!
|
||||||
|
|
||||||
|
def up
|
||||||
|
add_concurrent_index :ci_job_artifacts, :file_store
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
remove_index :ci_job_artifacts, :file_store if index_exists?(:ci_job_artifacts, :file_store)
|
||||||
|
end
|
||||||
|
end
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 20180405142733) do
|
ActiveRecord::Schema.define(version: 20180418053107) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
@ -367,6 +367,7 @@ ActiveRecord::Schema.define(version: 20180405142733) do
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "ci_job_artifacts", ["expire_at", "job_id"], name: "index_ci_job_artifacts_on_expire_at_and_job_id", using: :btree
|
add_index "ci_job_artifacts", ["expire_at", "job_id"], name: "index_ci_job_artifacts_on_expire_at_and_job_id", using: :btree
|
||||||
|
add_index "ci_job_artifacts", ["file_store"], name: "index_ci_job_artifacts_on_file_store", using: :btree
|
||||||
add_index "ci_job_artifacts", ["job_id", "file_type"], name: "index_ci_job_artifacts_on_job_id_and_file_type", unique: true, using: :btree
|
add_index "ci_job_artifacts", ["job_id", "file_type"], name: "index_ci_job_artifacts_on_job_id_and_file_type", unique: true, using: :btree
|
||||||
add_index "ci_job_artifacts", ["project_id"], name: "index_ci_job_artifacts_on_project_id", using: :btree
|
add_index "ci_job_artifacts", ["project_id"], name: "index_ci_job_artifacts_on_project_id", using: :btree
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue