diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2018-05-15 11:53:59 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2018-05-15 11:53:59 +0000 |
commit | f4ef6b474c44eb8e7034034dd95152818ae33b4a (patch) | |
tree | 4e4353c4819ea85812478e76474bd8f5e360678f | |
parent | bf806712835869046c819f84ee515caa8829c10d (diff) | |
parent | 528859ddcf9890c5671ff57e36df7fb24aceea31 (diff) | |
download | gitlab-ce-f4ef6b474c44eb8e7034034dd95152818ae33b4a.tar.gz |
Merge branch '46010-add-index-to-runner-type' into 'master'
Add index on ci_runners.runner_type
See merge request gitlab-org/gitlab-ce!18897
-rw-r--r-- | changelogs/unreleased/46010-add-index-to-runner-type.yml | 5 | ||||
-rw-r--r-- | db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb | 15 | ||||
-rw-r--r-- | db/schema.rb | 3 |
3 files changed, 22 insertions, 1 deletions
diff --git a/changelogs/unreleased/46010-add-index-to-runner-type.yml b/changelogs/unreleased/46010-add-index-to-runner-type.yml new file mode 100644 index 00000000000..fb8340e37b2 --- /dev/null +++ b/changelogs/unreleased/46010-add-index-to-runner-type.yml @@ -0,0 +1,5 @@ +--- +title: Add index on runner_type for ci_runners +merge_request: 18897 +author: +type: performance diff --git a/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb b/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb new file mode 100644 index 00000000000..580f56007c7 --- /dev/null +++ b/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb @@ -0,0 +1,15 @@ +class AddIndexOnCiRunnersRunnerType < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + disable_ddl_transaction! + + def up + add_concurrent_index :ci_runners, :runner_type + end + + def down + remove_index :ci_runners, :runner_type + end +end diff --git a/db/schema.rb b/db/schema.rb index 95adccf0d5c..4abca1789a0 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20180508135515) do +ActiveRecord::Schema.define(version: 20180511090724) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -503,6 +503,7 @@ ActiveRecord::Schema.define(version: 20180508135515) do add_index "ci_runners", ["contacted_at"], name: "index_ci_runners_on_contacted_at", using: :btree add_index "ci_runners", ["is_shared"], name: "index_ci_runners_on_is_shared", using: :btree add_index "ci_runners", ["locked"], name: "index_ci_runners_on_locked", using: :btree + add_index "ci_runners", ["runner_type"], name: "index_ci_runners_on_runner_type", using: :btree add_index "ci_runners", ["token"], name: "index_ci_runners_on_token", using: :btree create_table "ci_stages", force: :cascade do |t| |