BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
528859dd
Commit
528859dd
authored
May 11, 2018
by
Dylan Griffith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add index on runner_type for ci_runners
We use this to filter runner and will use this increasingly in future instead of is_shared so it should be indexed
parent
f91aaccf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
46010-add-index-to-runner-type.yml
changelogs/unreleased/46010-add-index-to-runner-type.yml
+5
-0
20180511090724_add_index_on_ci_runners_runner_type.rb
...ate/20180511090724_add_index_on_ci_runners_runner_type.rb
+15
-0
schema.rb
db/schema.rb
+2
-1
No files found.
changelogs/unreleased/46010-add-index-to-runner-type.yml
0 → 100644
View file @
528859dd
---
title
:
Add index on runner_type for ci_runners
merge_request
:
18897
author
:
type
:
performance
db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb
0 → 100644
View file @
528859dd
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
db/schema.rb
View file @
528859dd
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201805
08135515
)
do
ActiveRecord
::
Schema
.
define
(
version:
201805
11090724
)
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
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment