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
0ac5f127
Commit
0ac5f127
authored
Apr 18, 2018
by
Ash McKenzie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add index to file_store on ci_job_artifacts
parent
adcdb25b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
changelogs/unreleased/45476-geo-statement-timeout-counting-local-job-artifacts.yml
...76-geo-statement-timeout-counting-local-job-artifacts.yml
+5
-0
db/migrate/20180418053107_add_index_to_ci_job_artifacts_file_store.rb
...0180418053107_add_index_to_ci_job_artifacts_file_store.rb
+15
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
changelogs/unreleased/45476-geo-statement-timeout-counting-local-job-artifacts.yml
0 → 100644
View file @
0ac5f127
---
title
:
Add index to file_store on ci_job_artifacts
merge_request
:
18444
author
:
type
:
performance
db/migrate/20180418053107_add_index_to_ci_job_artifacts_file_store.rb
0 → 100644
View file @
0ac5f127
class
AddIndexToCiJobArtifactsFileStore
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:ci_job_artifacts
,
:file_store
end
def
down
remove_index
:ci_job_artifacts
,
:file_store
if
index_exists?
(
:ci_job_artifacts
,
:file_store
)
end
end
db/schema.rb
View file @
0ac5f127
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201804
05142733
)
do
ActiveRecord
::
Schema
.
define
(
version:
201804
18053107
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -367,6 +367,7 @@ ActiveRecord::Schema.define(version: 20180405142733) do
end
add_index
"ci_job_artifacts"
,
[
"expire_at"
,
"job_id"
],
name:
"index_ci_job_artifacts_on_expire_at_and_job_id"
,
using: :btree
add_index
"ci_job_artifacts"
,
[
"file_store"
],
name:
"index_ci_job_artifacts_on_file_store"
,
using: :btree
add_index
"ci_job_artifacts"
,
[
"job_id"
,
"file_type"
],
name:
"index_ci_job_artifacts_on_job_id_and_file_type"
,
unique:
true
,
using: :btree
add_index
"ci_job_artifacts"
,
[
"project_id"
],
name:
"index_ci_job_artifacts_on_project_id"
,
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