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
65dac44a
Commit
65dac44a
authored
May 05, 2019
by
Mark Chao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract record indexing as a service
Separation of concern
parent
76dadf3d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
178 additions
and
117 deletions
+178
-117
ee/app/services/elastic/index_record_service.rb
ee/app/services/elastic/index_record_service.rb
+56
-0
ee/app/workers/elastic_full_index_worker.rb
ee/app/workers/elastic_full_index_worker.rb
+1
-1
ee/app/workers/elastic_indexer_worker.rb
ee/app/workers/elastic_indexer_worker.rb
+5
-36
ee/spec/services/elastic/index_record_service_spec.rb
ee/spec/services/elastic/index_record_service_spec.rb
+111
-0
ee/spec/workers/elastic_indexer_worker_spec.rb
ee/spec/workers/elastic_indexer_worker_spec.rb
+5
-80
No files found.
ee/app/services/elastic/index_record_service.rb
0 → 100644
View file @
65dac44a
# frozen_string_literal: true
module
Elastic
class
IndexRecordService
include
Elasticsearch
::
Model
::
Client
::
ClassMethods
ISSUE_TRACKED_FIELDS
=
%w(assignee_ids author_id confidential)
.
freeze
# @param indexing [Boolean] determines whether operation is "indexing" or "updating"
def
execute
(
record
,
indexing
,
options
=
{})
record
.
__elasticsearch__
.
client
=
client
import
(
record
,
record
.
class
.
nested?
,
indexing
)
initial_index_project
(
record
)
if
record
.
class
==
Project
&&
indexing
update_issue_notes
(
record
,
options
[
"changed_fields"
])
if
record
.
class
==
Issue
rescue
Elasticsearch
::
Transport
::
Transport
::
Errors
::
NotFound
,
ActiveRecord
::
RecordNotFound
# These errors can happen in several cases, including:
# - A record is updated, then removed before the update is handled
# - Indexing is enabled, but not every item has been indexed yet - updating
# and deleting the un-indexed records will raise exception
#
# We can ignore these.
true
end
private
def
update_issue_notes
(
record
,
changed_fields
)
if
changed_fields
&&
(
changed_fields
&
ISSUE_TRACKED_FIELDS
).
any?
Note
.
es_import
query:
->
{
where
(
noteable:
record
)
}
end
end
def
initial_index_project
(
project
)
project
.
each_indexed_association
do
|
klass
,
objects
|
nested
=
klass
.
nested?
objects
.
find_each
{
|
object
|
import
(
object
,
nested
,
true
)
}
end
# Finally, index blobs/commits/wikis
ElasticCommitIndexerWorker
.
perform_async
(
project
.
id
)
end
def
import
(
record
,
nested
,
indexing
)
operation
=
indexing
?
'index_document'
:
'update_document'
if
nested
record
.
__elasticsearch__
.
__send__
operation
,
routing:
record
.
es_parent
# rubocop:disable GitlabSecurity/PublicSend
else
record
.
__elasticsearch__
.
__send__
operation
# rubocop:disable GitlabSecurity/PublicSend
end
end
end
end
ee/app/workers/elastic_full_index_worker.rb
View file @
65dac44a
...
...
@@ -13,7 +13,7 @@ class ElasticFullIndexWorker
return
true
unless
Gitlab
::
CurrentSettings
.
elasticsearch_indexing?
Project
.
id_in
(
start_id
..
end_id
).
find_each
do
|
project
|
Elastic
IndexerWorker
.
new
.
index
(
:index
,
project
)
Elastic
::
IndexRecordService
.
new
.
execute
(
project
,
true
)
end
end
end
ee/app/workers/elastic_indexer_worker.rb
View file @
65dac44a
...
...
@@ -5,8 +5,6 @@ class ElasticIndexerWorker
sidekiq_options
retry:
2
ISSUE_TRACKED_FIELDS
=
%w(assignee_ids author_id confidential)
.
freeze
def
perform
(
operation
,
class_name
,
record_id
,
es_id
,
options
=
{})
return
true
unless
Gitlab
::
CurrentSettings
.
elasticsearch_indexing?
...
...
@@ -14,7 +12,11 @@ class ElasticIndexerWorker
case
operation
.
to_s
when
/index|update/
index
(
operation
,
klass
.
find
(
record_id
),
options
)
Elastic
::
IndexRecordService
.
new
.
execute
(
klass
.
find
(
record_id
),
operation
.
to_s
.
match?
(
/index/
),
options
)
when
/delete/
if
klass
.
nested?
client
.
delete
(
...
...
@@ -38,46 +40,13 @@ class ElasticIndexerWorker
true
end
def
index
(
operation
,
record
,
options
=
{})
record
.
__elasticsearch__
.
client
=
client
import
(
operation
,
record
,
record
.
class
)
initial_index_project
(
record
)
if
record
.
class
==
Project
&&
operation
.
to_s
.
match?
(
/index/
)
update_issue_notes
(
record
,
options
[
"changed_fields"
])
if
record
.
class
==
Issue
end
private
def
update_issue_notes
(
record
,
changed_fields
)
if
changed_fields
&&
(
changed_fields
&
ISSUE_TRACKED_FIELDS
).
any?
Note
.
es_import
query:
->
{
where
(
noteable:
record
)
}
end
end
def
clear_project_data
(
record_id
,
es_id
)
remove_children_documents
(
'project'
,
record_id
,
es_id
)
IndexStatus
.
for_project
(
record_id
).
delete_all
end
def
initial_index_project
(
project
)
project
.
each_indexed_association
do
|
klass
,
objects
|
objects
.
find_each
{
|
object
|
import
(
:index
,
object
,
klass
)
}
end
# Finally, index blobs/commits/wikis
ElasticCommitIndexerWorker
.
perform_async
(
project
.
id
)
end
def
import
(
operation
,
record
,
klass
)
if
klass
.
nested?
record
.
__elasticsearch__
.
__send__
"
#{
operation
}
_document"
,
routing:
record
.
es_parent
# rubocop:disable GitlabSecurity/PublicSend
else
record
.
__elasticsearch__
.
__send__
"
#{
operation
}
_document"
# rubocop:disable GitlabSecurity/PublicSend
end
end
def
remove_documents_by_project_id
(
record_id
)
client
.
delete_by_query
({
index:
Project
.
__elasticsearch__
.
index_name
,
...
...
ee/spec/services/elastic/index_record_service_spec.rb
0 → 100644
View file @
65dac44a
require
'spec_helper'
describe
Elastic
::
IndexRecordService
,
:elastic
do
subject
{
described_class
.
new
}
before
do
stub_ee_application_setting
(
elasticsearch_indexing:
true
)
Elasticsearch
::
Model
.
client
=
Gitlab
::
Elastic
::
Client
.
build
(
Gitlab
::
CurrentSettings
.
elasticsearch_config
)
end
describe
'Indexing, updating, and deleting records'
do
using
RSpec
::
Parameterized
::
TableSyntax
where
(
:type
,
:name
,
:attribute
)
do
:project
|
"Project"
|
:name
:issue
|
"Issue"
|
:title
:note
|
"Note"
|
:note
:milestone
|
"Milestone"
|
:title
:merge_request
|
"MergeRequest"
|
:title
end
with_them
do
it
'indexes new records'
do
object
=
nil
Sidekiq
::
Testing
.
disable!
do
object
=
create
(
type
)
end
expect
do
subject
.
execute
(
object
,
true
)
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
.
to
change
{
Elasticsearch
::
Model
.
search
(
'*'
).
records
.
size
}.
by
(
1
)
end
it
'updates the index when object is changed'
do
object
=
nil
Sidekiq
::
Testing
.
disable!
do
object
=
create
(
type
)
subject
.
execute
(
object
,
true
)
object
.
update
(
attribute
=>
"new"
)
end
expect
do
subject
.
execute
(
object
,
false
)
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
.
to
change
{
Elasticsearch
::
Model
.
search
(
'new'
).
records
.
size
}.
by
(
1
)
end
end
end
it
'indexes all nested objects for a Project'
do
# To be able to access it outside the following block
project
=
nil
Sidekiq
::
Testing
.
disable!
do
project
=
create
:project
,
:repository
create
:issue
,
project:
project
create
:milestone
,
project:
project
create
:note
,
project:
project
create
:merge_request
,
target_project:
project
,
source_project:
project
create
:project_snippet
,
project:
project
end
expect
(
ElasticCommitIndexerWorker
).
to
receive
(
:perform_async
).
with
(
project
.
id
).
and_call_original
# Nothing should be in the index at this point
expect
(
Elasticsearch
::
Model
.
search
(
'*'
).
total_count
).
to
be
(
0
)
Sidekiq
::
Testing
.
inline!
do
subject
.
execute
(
project
,
true
)
end
Gitlab
::
Elastic
::
Helper
.
refresh_index
## All database objects + data from repository. The absolute value does not matter
expect
(
Elasticsearch
::
Model
.
search
(
'*'
).
total_count
).
to
be
>
40
end
it
'indexes changes during indexing gap'
do
project
=
nil
note
=
nil
Sidekiq
::
Testing
.
inline!
do
project
=
create
:project
,
:repository
note
=
create
:note
,
project:
project
,
note:
'note_1'
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
options
=
{
project_ids:
[
project
.
id
]
}
Sidekiq
::
Testing
.
disable!
do
note
.
update_columns
(
note:
'note_2'
)
create
:note
,
project:
project
,
note:
'note_3'
end
expect
(
Note
.
elastic_search
(
'note_1'
,
options:
options
).
present?
).
to
eq
(
true
)
expect
(
Note
.
elastic_search
(
'note_2'
,
options:
options
).
present?
).
to
eq
(
false
)
expect
(
Note
.
elastic_search
(
'note_3'
,
options:
options
).
present?
).
to
eq
(
false
)
Sidekiq
::
Testing
.
inline!
do
subject
.
execute
(
project
,
true
)
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
expect
(
Note
.
elastic_search
(
'note_1'
,
options:
options
).
present?
).
to
eq
(
false
)
expect
(
Note
.
elastic_search
(
'note_2'
,
options:
options
).
present?
).
to
eq
(
true
)
expect
(
Note
.
elastic_search
(
'note_3'
,
options:
options
).
present?
).
to
eq
(
true
)
end
end
ee/spec/workers/elastic_indexer_worker_spec.rb
View file @
65dac44a
...
...
@@ -30,31 +30,14 @@ describe ElasticIndexerWorker, :elastic do
end
with_them
do
it
'indexes new records'
do
object
=
nil
Sidekiq
::
Testing
.
disable!
do
it
'calls record indexing'
do
object
=
create
(
type
)
end
expect
do
subject
.
perform
(
"index"
,
name
,
object
.
id
,
object
.
es_id
)
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
.
to
change
{
Elasticsearch
::
Model
.
search
(
'*'
).
records
.
size
}.
by
(
1
)
expect_next_instance_of
(
Elastic
::
IndexRecordService
)
do
|
service
|
expect
(
service
).
to
receive
(
:execute
).
with
(
object
,
true
,
{})
end
it
'updates the index when object is changed'
do
object
=
nil
Sidekiq
::
Testing
.
disable!
do
object
=
create
(
type
)
subject
.
perform
(
"index"
,
name
,
object
.
id
,
object
.
es_id
)
object
.
update
(
attribute
=>
"new"
)
end
expect
do
subject
.
perform
(
"update"
,
name
,
object
.
id
,
object
.
es_id
)
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
.
to
change
{
Elasticsearch
::
Model
.
search
(
'new'
).
records
.
size
}.
by
(
1
)
end
it
'deletes from index when an object is deleted'
do
...
...
@@ -106,62 +89,4 @@ describe ElasticIndexerWorker, :elastic do
expect
(
Elasticsearch
::
Model
.
search
(
'*'
).
total_count
).
to
be
(
0
)
end
it
'indexes all nested objects for a Project'
do
# To be able to access it outside the following block
project
=
nil
Sidekiq
::
Testing
.
disable!
do
project
=
create
:project
,
:repository
create
:issue
,
project:
project
create
:milestone
,
project:
project
create
:note
,
project:
project
create
:merge_request
,
target_project:
project
,
source_project:
project
create
:project_snippet
,
project:
project
end
expect
(
ElasticCommitIndexerWorker
).
to
receive
(
:perform_async
).
with
(
project
.
id
).
and_call_original
# Nothing should be in the index at this point
expect
(
Elasticsearch
::
Model
.
search
(
'*'
).
total_count
).
to
be
(
0
)
Sidekiq
::
Testing
.
inline!
do
subject
.
perform
(
"index"
,
"Project"
,
project
.
id
,
project
.
es_id
)
end
Gitlab
::
Elastic
::
Helper
.
refresh_index
## All database objects + data from repository. The absolute value does not matter
expect
(
Elasticsearch
::
Model
.
search
(
'*'
).
total_count
).
to
be
>
40
end
it
'indexes changes during indexing gap'
do
project
=
nil
note
=
nil
Sidekiq
::
Testing
.
inline!
do
project
=
create
:project
,
:repository
note
=
create
:note
,
project:
project
,
note:
'note_1'
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
options
=
{
project_ids:
[
project
.
id
]
}
Sidekiq
::
Testing
.
disable!
do
note
.
update_columns
(
note:
'note_2'
)
create
:note
,
project:
project
,
note:
'note_3'
end
expect
(
Note
.
elastic_search
(
'note_1'
,
options:
options
).
present?
).
to
eq
(
true
)
expect
(
Note
.
elastic_search
(
'note_2'
,
options:
options
).
present?
).
to
eq
(
false
)
expect
(
Note
.
elastic_search
(
'note_3'
,
options:
options
).
present?
).
to
eq
(
false
)
Sidekiq
::
Testing
.
inline!
do
subject
.
perform
(
"index"
,
"Project"
,
project
.
id
,
project
.
es_id
)
Gitlab
::
Elastic
::
Helper
.
refresh_index
end
expect
(
Note
.
elastic_search
(
'note_1'
,
options:
options
).
present?
).
to
eq
(
false
)
expect
(
Note
.
elastic_search
(
'note_2'
,
options:
options
).
present?
).
to
eq
(
true
)
expect
(
Note
.
elastic_search
(
'note_3'
,
options:
options
).
present?
).
to
eq
(
true
)
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