Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
5733f5b8
Commit
5733f5b8
authored
Nov 21, 2018
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add partial index for ci_builds on project_id and status
parent
19ef77a1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
0 deletions
+39
-0
changelogs/unreleased/53994-add-missing-ci_builds-partial-indices.yml
...nreleased/53994-add-missing-ci_builds-partial-indices.yml
+5
-0
db/migrate/20181121101842_add_ci_builds_partial_index_on_project_id_and_status.rb
...2_add_ci_builds_partial_index_on_project_id_and_status.rb
+33
-0
db/schema.rb
db/schema.rb
+1
-0
No files found.
changelogs/unreleased/53994-add-missing-ci_builds-partial-indices.yml
0 → 100644
View file @
5733f5b8
---
title
:
Add partial index for ci_builds on project_id and status
merge_request
:
23268
author
:
type
:
performance
db/migrate/20181121101842_add_ci_builds_partial_index_on_project_id_and_status.rb
0 → 100644
View file @
5733f5b8
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddCiBuildsPartialIndexOnProjectIdAndStatus
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
(
*
index_arguments
)
end
def
down
remove_concurrent_index
(
*
index_arguments
)
end
private
def
index_arguments
[
:ci_builds
,
[
:project_id
,
:status
],
{
name:
'index_ci_builds_project_id_and_status_for_live_jobs_partial2'
,
where:
"(((type)::text = 'Ci::Build'::text) AND ((status)::text = ANY (ARRAY[('running'::character varying)::text, ('pending'::character varying)::text, ('created'::character varying)::text])))"
}
]
end
end
db/schema.rb
View file @
5733f5b8
...
...
@@ -352,6 +352,7 @@ ActiveRecord::Schema.define(version: 20181126153547) do
t
.
index
[
"commit_id"
,
"type"
,
"ref"
],
name:
"index_ci_builds_on_commit_id_and_type_and_ref"
,
using: :btree
t
.
index
[
"id"
],
name:
"partial_index_ci_builds_on_id_with_legacy_artifacts"
,
where:
"(artifacts_file <> ''::text)"
,
using: :btree
t
.
index
[
"project_id"
,
"id"
],
name:
"index_ci_builds_on_project_id_and_id"
,
using: :btree
t
.
index
[
"project_id"
,
"status"
],
name:
"index_ci_builds_project_id_and_status_for_live_jobs_partial2"
,
where:
"(((type)::text = 'Ci::Build'::text) AND ((status)::text = ANY (ARRAY[('running'::character varying)::text, ('pending'::character varying)::text, ('created'::character varying)::text])))"
,
using: :btree
t
.
index
[
"protected"
],
name:
"index_ci_builds_on_protected"
,
using: :btree
t
.
index
[
"runner_id"
],
name:
"index_ci_builds_on_runner_id"
,
using: :btree
t
.
index
[
"scheduled_at"
],
name:
"partial_index_ci_builds_on_scheduled_at_with_scheduled_jobs"
,
where:
"((scheduled_at IS NOT NULL) AND ((type)::text = 'Ci::Build'::text) AND ((status)::text = 'scheduled'::text))"
,
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