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
1fce08f9
Commit
1fce08f9
authored
Jan 21, 2017
by
Stan Hu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-index-on-ci-builds' into 'master'
Add index for ci_builds that makes shared runners query to run 100x faster. See merge request !8683
parents
6fe2adda
86881f4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
1 deletion
+37
-1
20170121123724_add_index_to_ci_builds_for_status_runner_id_and_type.rb
...4_add_index_to_ci_builds_for_status_runner_id_and_type.rb
+17
-0
20170121130655_add_index_to_ci_runners_for_is_shared.rb
...e/20170121130655_add_index_to_ci_runners_for_is_shared.rb
+17
-0
schema.rb
db/schema.rb
+3
-1
No files found.
db/migrate/20170121123724_add_index_to_ci_builds_for_status_runner_id_and_type.rb
0 → 100644
View file @
1fce08f9
class
AddIndexToCiBuildsForStatusRunnerIdAndType
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:ci_builds
,
[
:status
,
:type
,
:runner_id
]
end
def
down
if
index_exists?
(
:ci_builds
,
[
:status
,
:type
,
:runner_id
])
remove_index
:ci_builds
,
column:
[
:status
,
:type
,
:runner_id
]
end
end
end
db/migrate/20170121130655_add_index_to_ci_runners_for_is_shared.rb
0 → 100644
View file @
1fce08f9
class
AddIndexToCiRunnersForIsShared
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:ci_runners
,
:is_shared
end
def
down
if
index_exists?
(
:ci_runners
,
:is_shared
)
remove_index
:ci_runners
,
:is_shared
end
end
end
db/schema.rb
View file @
1fce08f9
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201701
06172224
)
do
ActiveRecord
::
Schema
.
define
(
version:
201701
21130655
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -224,6 +224,7 @@ ActiveRecord::Schema.define(version: 20170106172224) do
add_index
"ci_builds"
,
[
"gl_project_id"
],
name:
"index_ci_builds_on_gl_project_id"
,
using: :btree
add_index
"ci_builds"
,
[
"project_id"
],
name:
"index_ci_builds_on_project_id"
,
using: :btree
add_index
"ci_builds"
,
[
"runner_id"
],
name:
"index_ci_builds_on_runner_id"
,
using: :btree
add_index
"ci_builds"
,
[
"status"
,
"type"
,
"runner_id"
],
name:
"index_ci_builds_on_status_and_type_and_runner_id"
,
using: :btree
add_index
"ci_builds"
,
[
"status"
],
name:
"index_ci_builds_on_status"
,
using: :btree
add_index
"ci_builds"
,
[
"token"
],
name:
"index_ci_builds_on_token"
,
unique:
true
,
using: :btree
...
...
@@ -327,6 +328,7 @@ ActiveRecord::Schema.define(version: 20170106172224) do
t
.
boolean
"locked"
,
default:
false
,
null:
false
end
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"
,
[
"token"
],
name:
"index_ci_runners_on_token"
,
using: :btree
...
...
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