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
1043d2bc
Commit
1043d2bc
authored
Jun 16, 2021
by
Simon Tomlinson
Committed by
Tetiana Chupryna
Jun 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Log migration per-query information in a structured format
parent
98a555f4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
1 deletion
+101
-1
lib/gitlab/database/migrations/observers.rb
lib/gitlab/database/migrations/observers.rb
+2
-1
lib/gitlab/database/migrations/observers/query_details.rb
lib/gitlab/database/migrations/observers/query_details.rb
+41
-0
spec/lib/gitlab/database/migrations/observers/query_details_spec.rb
...itlab/database/migrations/observers/query_details_spec.rb
+58
-0
No files found.
lib/gitlab/database/migrations/observers.rb
View file @
1043d2bc
...
...
@@ -8,7 +8,8 @@ module Gitlab
[
TotalDatabaseSizeChange
.
new
,
QueryStatistics
.
new
,
QueryLog
.
new
QueryLog
.
new
,
QueryDetails
.
new
]
end
end
...
...
lib/gitlab/database/migrations/observers/query_details.rb
0 → 100644
View file @
1043d2bc
# frozen_string_literal: true
module
Gitlab
module
Database
module
Migrations
module
Observers
class
QueryDetails
<
MigrationObserver
def
before
@file_path
=
File
.
join
(
Instrumentation
::
RESULT_DIR
,
'current-details.json'
)
@file
=
File
.
open
(
@file_path
,
'wb'
)
@writer
=
Oj
::
StreamWriter
.
new
(
@file
,
{})
@writer
.
push_array
@subscriber
=
ActiveSupport
::
Notifications
.
subscribe
(
'sql.active_record'
)
do
|*
args
|
record_sql_event
(
*
args
)
end
end
def
after
ActiveSupport
::
Notifications
.
unsubscribe
(
@subscriber
)
@writer
.
pop_all
@writer
.
flush
@file
.
close
end
def
record
(
observation
)
File
.
rename
(
@file_path
,
File
.
join
(
Instrumentation
::
RESULT_DIR
,
"
#{
observation
.
migration
}
-query-details.json"
))
end
def
record_sql_event
(
_name
,
started
,
finished
,
_unique_id
,
payload
)
@writer
.
push_value
({
start_time:
started
.
iso8601
(
6
),
end_time:
finished
.
iso8601
(
6
),
sql:
payload
[
:sql
],
binds:
payload
[
:type_casted_binds
]
})
end
end
end
end
end
end
spec/lib/gitlab/database/migrations/observers/query_details_spec.rb
0 → 100644
View file @
1043d2bc
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
Gitlab
::
Database
::
Migrations
::
Observers
::
QueryDetails
do
subject
{
described_class
.
new
}
let
(
:observation
)
{
Gitlab
::
Database
::
Migrations
::
Observation
.
new
(
migration
)
}
let
(
:connection
)
{
ActiveRecord
::
Base
.
connection
}
let
(
:query
)
{
"select date_trunc('day', $1::timestamptz) + $2 * (interval '1 hour')"
}
let
(
:query_binds
)
{
[
Time
.
current
,
3
]
}
let
(
:directory_path
)
{
Dir
.
mktmpdir
}
let
(
:log_file
)
{
"
#{
directory_path
}
/
#{
migration
}
-query-details.json"
}
let
(
:query_details
)
{
Gitlab
::
Json
.
parse
(
File
.
read
(
log_file
))
}
let
(
:migration
)
{
20210422152437
}
before
do
stub_const
(
'Gitlab::Database::Migrations::Instrumentation::RESULT_DIR'
,
directory_path
)
end
after
do
FileUtils
.
remove_entry
(
directory_path
)
end
it
'records details of executed queries'
do
observe
expect
(
query_details
.
size
).
to
eq
(
1
)
log_entry
=
query_details
[
0
]
start_time
,
end_time
,
sql
,
binds
=
log_entry
.
values_at
(
'start_time'
,
'end_time'
,
'sql'
,
'binds'
)
start_time
=
DateTime
.
parse
(
start_time
)
end_time
=
DateTime
.
parse
(
end_time
)
aggregate_failures
do
expect
(
sql
).
to
include
(
query
)
expect
(
start_time
).
to
be_before
(
end_time
)
expect
(
binds
).
to
eq
(
query_binds
.
map
{
|
b
|
connection
.
type_cast
(
b
)
})
end
end
it
'unsubscribes after the observation'
do
observe
expect
(
subject
).
not_to
receive
(
:record_sql_event
)
run_query
end
def
observe
subject
.
before
run_query
subject
.
after
subject
.
record
(
observation
)
end
def
run_query
connection
.
exec_query
(
query
,
'SQL'
,
query_binds
)
end
end
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