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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
1dec7480
Commit
1dec7480
authored
Aug 20, 2019
by
Thong Kuah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add index to improve query performance
For Environment.deployed_to_cluster
parent
b3412033
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
changelogs/unreleased/cluster_deployments.yml
changelogs/unreleased/cluster_deployments.yml
+5
-0
db/migrate/20190819131155_add_cluster_status_index_to_deployments.rb
...20190819131155_add_cluster_status_index_to_deployments.rb
+17
-0
db/schema.rb
db/schema.rb
+1
-0
No files found.
changelogs/unreleased/cluster_deployments.yml
0 → 100644
View file @
1dec7480
---
title
:
Add index to improve group cluster deployments query performance
merge_request
:
31988
author
:
type
:
other
db/migrate/20190819131155_add_cluster_status_index_to_deployments.rb
0 → 100644
View file @
1dec7480
# frozen_string_literal: true
class
AddClusterStatusIndexToDeployments
<
ActiveRecord
::
Migration
[
5.2
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:deployments
,
[
:cluster_id
,
:status
]
end
def
down
remove_concurrent_index
:deployments
,
[
:cluster_id
,
:status
]
end
end
db/schema.rb
View file @
1dec7480
...
@@ -1146,6 +1146,7 @@ ActiveRecord::Schema.define(version: 2019_08_28_083843) do
...
@@ -1146,6 +1146,7 @@ ActiveRecord::Schema.define(version: 2019_08_28_083843) do
t
.
integer
"status"
,
limit:
2
,
null:
false
t
.
integer
"status"
,
limit:
2
,
null:
false
t
.
datetime_with_timezone
"finished_at"
t
.
datetime_with_timezone
"finished_at"
t
.
integer
"cluster_id"
t
.
integer
"cluster_id"
t
.
index
[
"cluster_id"
,
"status"
],
name:
"index_deployments_on_cluster_id_and_status"
t
.
index
[
"cluster_id"
],
name:
"index_deployments_on_cluster_id"
t
.
index
[
"cluster_id"
],
name:
"index_deployments_on_cluster_id"
t
.
index
[
"created_at"
],
name:
"index_deployments_on_created_at"
t
.
index
[
"created_at"
],
name:
"index_deployments_on_created_at"
t
.
index
[
"deployable_type"
,
"deployable_id"
],
name:
"index_deployments_on_deployable_type_and_deployable_id"
t
.
index
[
"deployable_type"
,
"deployable_id"
],
name:
"index_deployments_on_deployable_type_and_deployable_id"
...
...
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