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
b6a530c9
Commit
b6a530c9
authored
Oct 28, 2018
by
Andreas Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify to use models instead of tables.
parent
f2ec9d2d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
25 deletions
+25
-25
lib/gitlab/database/count.rb
lib/gitlab/database/count.rb
+23
-23
spec/lib/gitlab/database/count_spec.rb
spec/lib/gitlab/database/count_spec.rb
+2
-2
No files found.
lib/gitlab/database/count.rb
View file @
b6a530c9
...
...
@@ -26,24 +26,17 @@ module Gitlab
# @param [Array]
# @return [Hash] of Model -> count mapping
def
self
.
approximate_counts
(
models
)
table_to_model_map
=
models
.
each_with_object
({})
do
|
model
,
hash
|
hash
[
model
.
table_name
]
=
model
end
table_names
=
table_to_model_map
.
keys
counts_by_table_name
=
Gitlab
::
Database
.
postgresql?
?
reltuples_from_recently_updated
(
table_names
)
:
{}
counts_by_model
=
{}
# Convert table -> count to Model -> count
counts_by_model
=
counts_by_table_name
.
each_with_object
({})
do
|
pair
,
hash
|
model
=
table_to_model_map
[
pair
.
first
]
hash
[
model
]
=
pair
.
second
if
Gitlab
::
Database
.
postgresql?
#counts_by_model = ReltuplesCountStrategy.new(models).count
counts_by_model
=
reltuples_from_recently_updated
(
models
)
end
missing_
tables
=
table_names
-
counts_by_table_name
.
keys
missing_
models
=
models
-
counts_by_model
.
keys
missing_tables
.
each
do
|
table
|
model
=
table_to_model_map
[
table
]
counts_by_model
[
model
]
=
model
.
count
ExactCountStrategy
.
new
(
missing_models
).
count
.
each
do
|
model
,
count
|
counts_by_model
[
model
]
=
count
end
counts_by_model
...
...
@@ -51,10 +44,10 @@ module Gitlab
# Returns a hash of the table names that have recently updated tuples.
#
# @param [Array]
table names
# @param [Array]
models to count
# @returns [Hash] Table name to count mapping (e.g. { 'projects' => 5, 'users' => 100 })
def
self
.
reltuples_from_recently_updated
(
table_name
s
)
ReltuplesCountStrategy
.
new
(
table_name
s
).
count
def
self
.
reltuples_from_recently_updated
(
model
s
)
ReltuplesCountStrategy
.
new
(
model
s
).
count
end
class
ExactCountStrategy
...
...
@@ -71,11 +64,9 @@ module Gitlab
end
class
ReltuplesCountStrategy
attr_reader
:table_names
# @param [Array] table names
def
initialize
(
table_names
)
@table_names
=
table_names
attr_reader
:models
def
initialize
(
models
)
@models
=
models
end
# Returns a hash of the table names that have recently updated tuples.
...
...
@@ -91,13 +82,22 @@ module Gitlab
rows
=
ActiveRecord
::
Base
.
connection
.
select_all
(
query
)
end
rows
.
each_with_object
({})
{
|
row
,
data
|
data
[
row
[
'table_name'
]]
=
row
[
'estimate'
].
to_i
}
table_to_model
=
models
.
each_with_object
({})
{
|
model
,
h
|
h
[
model
.
table_name
]
=
model
}
rows
.
each_with_object
({})
do
|
row
,
data
|
model
=
table_to_model
[
row
[
'table_name'
]]
data
[
model
]
=
row
[
'estimate'
].
to_i
end
rescue
*
CONNECTION_ERRORS
=>
e
{}
end
private
def
table_names
models
.
map
(
&
:table_name
)
end
# Generates the PostgreSQL query to return the tuples for tables
# that have been vacuumed or analyzed in the last hour.
#
...
...
spec/lib/gitlab/database/count_spec.rb
View file @
b6a530c9
...
...
@@ -25,7 +25,7 @@ describe Gitlab::Database::Count do
context
'with PostgreSQL'
,
:postgresql
do
describe
'when reltuples have not been updated'
do
it
'counts all models the normal way'
do
expect
(
described_class
).
to
receive
(
:reltuples_from_recently_updated
).
with
(
%w(projects identities)
).
and_return
({})
expect
(
described_class
).
to
receive
(
:reltuples_from_recently_updated
).
with
(
models
).
and_return
({})
expect
(
Project
).
to
receive
(
:count
).
and_call_original
expect
(
Identity
).
to
receive
(
:count
).
and_call_original
...
...
@@ -45,7 +45,7 @@ describe Gitlab::Database::Count do
describe
'when some reltuples have been updated'
do
it
'counts projects in the fast way'
do
expect
(
described_class
).
to
receive
(
:reltuples_from_recently_updated
).
with
(
%w(projects identities)
).
and_return
({
'projects'
=>
3
})
expect
(
described_class
).
to
receive
(
:reltuples_from_recently_updated
).
with
(
models
).
and_return
({
Project
=>
3
})
expect
(
Project
).
not_to
receive
(
:count
).
and_call_original
expect
(
Identity
).
to
receive
(
:count
).
and_call_original
...
...
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