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
5cbe0bf9
Commit
5cbe0bf9
authored
Aug 30, 2021
by
Terri Chu
Committed by
Dmitry Gruzd
Aug 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add namespace_ancestry to issues index mapping
parent
2de8f69f
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
180 additions
and
90 deletions
+180
-90
ee/app/models/concerns/elastic/application_versioned_search.rb
...p/models/concerns/elastic/application_versioned_search.rb
+1
-1
ee/app/services/ee/groups/transfer_service.rb
ee/app/services/ee/groups/transfer_service.rb
+7
-15
ee/app/services/ee/projects/transfer_service.rb
ee/app/services/ee/projects/transfer_service.rb
+6
-7
ee/app/workers/concerns/elastic/migration_helper.rb
ee/app/workers/concerns/elastic/migration_helper.rb
+4
-0
ee/elastic/migrate/20210813134600_add_namespace_ancestry_to_issues_mapping.rb
...0210813134600_add_namespace_ancestry_to_issues_mapping.rb
+30
-0
ee/lib/elastic/latest/application_instance_proxy.rb
ee/lib/elastic/latest/application_instance_proxy.rb
+6
-0
ee/lib/elastic/latest/issue_class_proxy.rb
ee/lib/elastic/latest/issue_class_proxy.rb
+1
-1
ee/lib/elastic/latest/issue_config.rb
ee/lib/elastic/latest/issue_config.rb
+1
-0
ee/lib/elastic/latest/issue_instance_proxy.rb
ee/lib/elastic/latest/issue_instance_proxy.rb
+1
-0
ee/lib/gitlab/elastic/helper.rb
ee/lib/gitlab/elastic/helper.rb
+10
-0
ee/spec/elastic/migrate/20210813134600_add_namespace_ancestry_to_issues_mapping_spec.rb
...13134600_add_namespace_ancestry_to_issues_mapping_spec.rb
+51
-0
ee/spec/models/concerns/elastic/issue_spec.rb
ee/spec/models/concerns/elastic/issue_spec.rb
+42
-27
ee/spec/services/groups/transfer_service_spec.rb
ee/spec/services/groups/transfer_service_spec.rb
+15
-20
ee/spec/services/projects/transfer_service_spec.rb
ee/spec/services/projects/transfer_service_spec.rb
+5
-19
No files found.
ee/app/models/concerns/elastic/application_versioned_search.rb
View file @
5cbe0bf9
...
@@ -3,7 +3,7 @@ module Elastic
...
@@ -3,7 +3,7 @@ module Elastic
module
ApplicationVersionedSearch
module
ApplicationVersionedSearch
extend
ActiveSupport
::
Concern
extend
ActiveSupport
::
Concern
FORWARDABLE_INSTANCE_METHODS
=
[
:es_id
,
:es_parent
].
freeze
FORWARDABLE_INSTANCE_METHODS
=
[
:es_id
,
:es_parent
,
:namespace_ancestry
].
freeze
FORWARDABLE_CLASS_METHODS
=
[
:elastic_search
,
:es_import
,
:es_type
,
:index_name
,
:document_type
,
:mapping
,
:mappings
,
:settings
,
:import
].
freeze
FORWARDABLE_CLASS_METHODS
=
[
:elastic_search
,
:es_import
,
:es_type
,
:index_name
,
:document_type
,
:mapping
,
:mappings
,
:settings
,
:import
].
freeze
# rubocop:disable Gitlab/ModuleWithInstanceVariables
# rubocop:disable Gitlab/ModuleWithInstanceVariables
...
...
ee/app/services/ee/groups/transfer_service.rb
View file @
5cbe0bf9
...
@@ -31,22 +31,14 @@ module EE
...
@@ -31,22 +31,14 @@ module EE
end
end
def
update_elasticsearch_hooks
(
updated_project_ids
)
def
update_elasticsearch_hooks
(
updated_project_ids
)
# Handle when group is moved to a new group. There is no way to know
# When a group is moved to a new group, there is no way to know whether the group was using Elasticsearch
# whether the group was using Elasticsearch before the transfer. If Elasticsearch limit indexing is
# before the transfer. If Elasticsearch limit indexing is enabled, each project has the ES cache
# enabled, each associated project has the ES cache is invalidated all associated data is indexed.
# invalidated. Reindex all projects and associated data to make sure the namespace_ancestry field gets
# If Elasticsearch limit indexing is disabled, all projects are indexed and only those with visibility
# updated in each document.
# changes have their ES cache entry invalidated.
if
::
Gitlab
::
CurrentSettings
.
elasticsearch_limit_indexing?
::
Project
.
id_in
(
group
.
all_projects
.
select
(
:id
)).
find_each
do
|
project
|
::
Project
.
id_in
(
group
.
all_projects
.
select
(
:id
)).
find_each
do
|
project
|
project
.
invalidate_elasticsearch_indexes_cache!
project
.
invalidate_elasticsearch_indexes_cache!
if
::
Gitlab
::
CurrentSettings
.
elasticsearch_limit_indexing?
::
Elastic
::
ProcessInitialBookkeepingService
.
backfill_projects!
(
project
)
if
project
.
maintaining_elasticsearch?
::
Elastic
::
ProcessInitialBookkeepingService
.
backfill_projects!
(
project
)
if
project
.
maintaining_elasticsearch?
end
end
else
::
Project
.
id_in
(
updated_project_ids
).
find_each
do
|
project
|
project
.
maintain_elasticsearch_update
(
updated_attributes:
[
:visibility_level
])
if
project
.
maintaining_elasticsearch?
end
end
end
end
end
end
end
end
...
...
ee/app/services/ee/projects/transfer_service.rb
View file @
5cbe0bf9
...
@@ -35,16 +35,15 @@ module EE
...
@@ -35,16 +35,15 @@ module EE
end
end
def
update_elasticsearch_hooks
def
update_elasticsearch_hooks
return
unless
::
Gitlab
::
CurrentSettings
.
elasticsearch_limit_indexing?
# When a project is moved to a new namespace, invalidate the ES cache if Elasticsearch limit indexing is enabled
# and the Elasticsearch settings are different between the two namespaces. The project and all associated data
# handle when project is moved to a new namespace with different elasticsearch settings
# is indexed to make sure the namespace_ancestry field gets updated in each document.
# than the old namespace
if
::
Gitlab
::
CurrentSettings
.
elasticsearch_limit_indexing?
&&
old_namespace
.
use_elasticsearch?
!=
new_namespace
.
use_elasticsearch?
if
old_namespace
.
use_elasticsearch?
!=
new_namespace
.
use_elasticsearch?
project
.
invalidate_elasticsearch_indexes_cache!
project
.
invalidate_elasticsearch_indexes_cache!
end
::
Elastic
::
ProcessInitialBookkeepingService
.
backfill_projects!
(
project
)
if
project
.
maintaining_elasticsearch?
::
Elastic
::
ProcessInitialBookkeepingService
.
backfill_projects!
(
project
)
if
project
.
maintaining_elasticsearch?
end
end
end
override
:remove_paid_features
override
:remove_paid_features
def
remove_paid_features
def
remove_paid_features
...
...
ee/app/workers/concerns/elastic/migration_helper.rb
View file @
5cbe0bf9
...
@@ -102,5 +102,9 @@ module Elastic
...
@@ -102,5 +102,9 @@ module Elastic
}
}
}
}
end
end
def
update_mapping!
(
index_name
,
mappings
)
helper
.
update_mapping
(
index_name:
index_name
,
mappings:
mappings
)
end
end
end
end
end
ee/elastic/migrate/20210813134600_add_namespace_ancestry_to_issues_mapping.rb
0 → 100644
View file @
5cbe0bf9
# frozen_string_literal: true
class
AddNamespaceAncestryToIssuesMapping
<
Elastic
::
Migration
include
Elastic
::
MigrationHelper
DOCUMENT_KLASS
=
Issue
def
migrate
if
completed?
log
'Skipping adding namespace_ancestry to issues mapping migration since it is already applied'
return
end
log
'Adding namespace_ancestry to issues mapping'
update_mapping!
(
index_name
,
{
properties:
{
namespace_ancestry:
{
type:
'text'
,
index_prefixes:
{
min_chars:
1
,
max_chars:
19
}
}
}
})
end
def
completed?
helper
.
refresh_index
(
index_name:
index_name
)
mappings
=
helper
.
get_mapping
(
index_name:
index_name
)
mappings
.
dig
(
'namespace_ancestry'
).
present?
end
private
def
index_name
DOCUMENT_KLASS
.
__elasticsearch__
.
index_name
end
end
ee/lib/elastic/latest/application_instance_proxy.rb
View file @
5cbe0bf9
...
@@ -17,6 +17,12 @@ module Elastic
...
@@ -17,6 +17,12 @@ module Elastic
"
#{
es_type
}
_
#{
target
.
id
}
"
"
#{
es_type
}
_
#{
target
.
id
}
"
end
end
def
namespace_ancestry
project
=
target
.
is_a?
(
Project
)
?
target
:
target
.
project
namespace
=
project
.
namespace
namespace
.
self_and_ancestor_ids
(
hierarchy_order: :desc
).
join
(
'-'
)
end
private
private
def
generic_attributes
def
generic_attributes
...
...
ee/lib/elastic/latest/issue_class_proxy.rb
View file @
5cbe0bf9
...
@@ -30,7 +30,7 @@ module Elastic
...
@@ -30,7 +30,7 @@ module Elastic
# rubocop: disable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def
preload_indexing_data
(
relation
)
def
preload_indexing_data
(
relation
)
relation
.
includes
(
:issue_assignees
,
project:
[
:project_feature
])
relation
.
includes
(
:issue_assignees
,
project:
[
:project_feature
,
:namespace
])
end
end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: enable CodeReuse/ActiveRecord
...
...
ee/lib/elastic/latest/issue_config.rb
View file @
5cbe0bf9
...
@@ -36,6 +36,7 @@ module Elastic
...
@@ -36,6 +36,7 @@ module Elastic
indexes
:visibility_level
,
type: :integer
indexes
:visibility_level
,
type: :integer
indexes
:issues_access_level
,
type: :integer
indexes
:issues_access_level
,
type: :integer
indexes
:upvotes
,
type: :integer
indexes
:upvotes
,
type: :integer
indexes
:namespace_ancestry
,
type: :text
,
index_prefixes:
{
min_chars:
1
,
max_chars:
19
}
end
end
end
end
end
end
...
...
ee/lib/elastic/latest/issue_instance_proxy.rb
View file @
5cbe0bf9
...
@@ -21,6 +21,7 @@ module Elastic
...
@@ -21,6 +21,7 @@ module Elastic
data
[
'issues_access_level'
]
=
safely_read_project_feature_for_elasticsearch
(
:issues
)
data
[
'issues_access_level'
]
=
safely_read_project_feature_for_elasticsearch
(
:issues
)
data
[
'upvotes'
]
=
target
.
upvotes_count
data
[
'upvotes'
]
=
target
.
upvotes_count
data
[
'namespace_ancestry'
]
=
target
.
namespace_ancestry
if
Elastic
::
DataMigrationService
.
migration_has_finished?
(
:add_namespace_ancestry_to_issues_mapping
)
data
.
merge
(
generic_attributes
)
data
.
merge
(
generic_attributes
)
end
end
...
...
ee/lib/gitlab/elastic/helper.rb
View file @
5cbe0bf9
...
@@ -229,10 +229,20 @@ module Gitlab
...
@@ -229,10 +229,20 @@ module Gitlab
settings
.
dig
(
index
,
'settings'
,
'index'
)
settings
.
dig
(
index
,
'settings'
,
'index'
)
end
end
def
get_mapping
(
index_name:
nil
)
index
=
target_index_name
(
target:
index_name
)
mappings
=
client
.
indices
.
get_mapping
(
index:
index
)
mappings
.
dig
(
index
,
'mappings'
,
'properties'
)
end
def
update_settings
(
index_name:
nil
,
settings
:)
def
update_settings
(
index_name:
nil
,
settings
:)
client
.
indices
.
put_settings
(
index:
index_name
||
target_index_name
,
body:
settings
)
client
.
indices
.
put_settings
(
index:
index_name
||
target_index_name
,
body:
settings
)
end
end
def
update_mapping
(
index_name:
nil
,
mappings
:)
client
.
indices
.
put_mapping
(
index:
index_name
||
target_index_name
,
body:
mappings
)
end
def
switch_alias
(
from:
target_index_name
,
alias_name:
target_name
,
to
:)
def
switch_alias
(
from:
target_index_name
,
alias_name:
target_name
,
to
:)
actions
=
[
actions
=
[
{
{
...
...
ee/spec/elastic/migrate/20210813134600_add_namespace_ancestry_to_issues_mapping_spec.rb
0 → 100644
View file @
5cbe0bf9
# frozen_string_literal: true
require
'spec_helper'
require
File
.
expand_path
(
'ee/elastic/migrate/20210813134600_add_namespace_ancestry_to_issues_mapping.rb'
)
RSpec
.
describe
AddNamespaceAncestryToIssuesMapping
,
:elastic
,
:sidekiq_inline
do
let
(
:version
)
{
20210813134600
}
let
(
:migration
)
{
described_class
.
new
(
version
)
}
let
(
:helper
)
{
Gitlab
::
Elastic
::
Helper
.
new
}
before
do
allow
(
migration
).
to
receive
(
:helper
).
and_return
(
helper
)
end
describe
'.migrate'
do
subject
{
migration
.
migrate
}
context
'when migration is already completed'
do
it
'does not modify data'
do
expect
(
helper
).
not_to
receive
(
:update_mapping
)
subject
end
end
context
'migration process'
do
before
do
allow
(
helper
).
to
receive
(
:get_mapping
).
and_return
({})
end
it
'updates the issues index mappings'
do
expect
(
helper
).
to
receive
(
:update_mapping
)
subject
end
end
end
describe
'.completed?'
do
context
'mapping has been updated'
do
specify
{
expect
(
migration
).
to
be_completed
}
end
context
'mapping has not been updated'
do
before
do
allow
(
helper
).
to
receive
(
:get_mapping
).
and_return
({})
end
specify
{
expect
(
migration
).
not_to
be_completed
}
end
end
end
ee/spec/models/concerns/elastic/issue_spec.rb
View file @
5cbe0bf9
...
@@ -105,12 +105,25 @@ RSpec.describe Issue, :elastic do
...
@@ -105,12 +105,25 @@ RSpec.describe Issue, :elastic do
expect
(
results
.
first
.
title
).
to
eq
(
'bla-bla issue'
)
expect
(
results
.
first
.
title
).
to
eq
(
'bla-bla issue'
)
end
end
it
"returns json with all needed elements"
do
context
'json'
do
assignee
=
create
(
:user
)
let_it_be
(
:assignee
)
{
create
(
:user
)
}
project
=
create
(
:project
,
:internal
)
let_it_be
(
:group
)
{
create
(
:group
)
}
issue
=
create
:issue
,
project:
project
,
assignees:
[
assignee
]
let_it_be
(
:subgroup
)
{
create
(
:group
,
parent:
group
)
}
create
(
:award_emoji
,
:upvote
,
awardable:
issue
)
let_it_be
(
:project
)
{
create
(
:project
,
:internal
,
namespace:
subgroup
)
}
let_it_be
(
:issue
)
{
create
(
:issue
,
project:
project
,
assignees:
[
assignee
])
}
let_it_be
(
:award_emoji
)
{
create
(
:award_emoji
,
:upvote
,
awardable:
issue
)
}
context
'when add_namespace_ancestry_to_issues_mapping migration is not done'
do
before
do
set_elasticsearch_migration_to
:add_namespace_ancestry_to_issues_mapping
,
including:
false
end
it
"returns json without namespace_ancestry"
do
expect
(
issue
.
__elasticsearch__
.
as_indexed_json
.
keys
).
not_to
include
(
'namespace_ancestry'
)
end
end
it
"returns json with all needed elements"
do
expected_hash
=
issue
.
attributes
.
extract!
(
expected_hash
=
issue
.
attributes
.
extract!
(
'id'
,
'id'
,
'iid'
,
'iid'
,
...
@@ -124,7 +137,8 @@ RSpec.describe Issue, :elastic do
...
@@ -124,7 +137,8 @@ RSpec.describe Issue, :elastic do
).
merge
({
).
merge
({
'type'
=>
issue
.
es_type
,
'type'
=>
issue
.
es_type
,
'state'
=>
issue
.
state
,
'state'
=>
issue
.
state
,
'upvotes'
=>
1
'upvotes'
=>
1
,
'namespace_ancestry'
=>
"
#{
group
.
id
}
-
#{
subgroup
.
id
}
"
})
})
expected_hash
[
'assignee_id'
]
=
[
assignee
.
id
]
expected_hash
[
'assignee_id'
]
=
[
assignee
.
id
]
...
@@ -133,6 +147,7 @@ RSpec.describe Issue, :elastic do
...
@@ -133,6 +147,7 @@ RSpec.describe Issue, :elastic do
expect
(
issue
.
__elasticsearch__
.
as_indexed_json
).
to
eq
(
expected_hash
)
expect
(
issue
.
__elasticsearch__
.
as_indexed_json
).
to
eq
(
expected_hash
)
end
end
end
it
'handles a project missing project_feature'
,
:aggregate_failures
do
it
'handles a project missing project_feature'
,
:aggregate_failures
do
issue
=
create
:issue
,
project:
project
issue
=
create
:issue
,
project:
project
...
...
ee/spec/services/groups/transfer_service_spec.rb
View file @
5cbe0bf9
...
@@ -45,7 +45,7 @@ RSpec.describe Groups::TransferService, '#execute' do
...
@@ -45,7 +45,7 @@ RSpec.describe Groups::TransferService, '#execute' do
create
(
:elasticsearch_indexed_namespace
,
namespace:
new_group
)
create
(
:elasticsearch_indexed_namespace
,
namespace:
new_group
)
end
end
it
'invalidates the cache and indexes the project and a
ssociated issues only
'
do
it
'invalidates the cache and indexes the project and a
ll associated data
'
do
expect
(
project
).
not_to
receive
(
:maintain_elasticsearch_update
)
expect
(
project
).
not_to
receive
(
:maintain_elasticsearch_update
)
expect
(
project
).
not_to
receive
(
:maintain_elasticsearch_destroy
)
expect
(
project
).
not_to
receive
(
:maintain_elasticsearch_destroy
)
expect
(
::
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project
)
expect
(
::
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project
)
...
@@ -57,21 +57,17 @@ RSpec.describe Groups::TransferService, '#execute' do
...
@@ -57,21 +57,17 @@ RSpec.describe Groups::TransferService, '#execute' do
end
end
context
'when elasticsearch_limit_indexing is off'
do
context
'when elasticsearch_limit_indexing is off'
do
context
'when visibility changes'
do
let
(
:new_group
)
{
create
(
:group
,
:private
)
}
let
(
:new_group
)
{
create
(
:group
,
:private
)
}
it
'does not invalidate the cache and reindexes projects and associated issues, merge_requests and notes
'
do
it
'does not invalidate the cache and reindexes projects and associated data
'
do
project1
=
create
(
:project
,
:repository
,
:public
,
namespace:
group
)
project1
=
create
(
:project
,
:repository
,
:public
,
namespace:
group
)
project2
=
create
(
:project
,
:repository
,
:public
,
namespace:
group
)
project2
=
create
(
:project
,
:repository
,
:public
,
namespace:
group
)
project3
=
create
(
:project
,
:repository
,
:private
,
namespace:
group
)
project3
=
create
(
:project
,
:repository
,
:private
,
namespace:
group
)
expect
(
::
Gitlab
::
CurrentSettings
).
not_to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
)
expect
(
::
Gitlab
::
CurrentSettings
).
not_to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
)
expect
(
Elastic
::
ProcessBookkeepingService
).
to
receive
(
:track!
).
with
(
project1
)
expect
(
::
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project1
)
expect
(
ElasticAssociationIndexerWorker
).
to
receive
(
:perform_async
).
with
(
'Project'
,
project1
.
id
,
%w[issues merge_requests notes]
)
expect
(
::
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project2
)
expect
(
Elastic
::
ProcessBookkeepingService
).
to
receive
(
:track!
).
with
(
project2
)
expect
(
::
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project3
)
expect
(
ElasticAssociationIndexerWorker
).
to
receive
(
:perform_async
).
with
(
'Project'
,
project2
.
id
,
%w[issues merge_requests notes]
)
expect
(
Elastic
::
ProcessBookkeepingService
).
not_to
receive
(
:track!
).
with
(
project3
)
expect
(
ElasticAssociationIndexerWorker
).
not_to
receive
(
:perform_async
).
with
(
'Project'
,
project3
.
id
,
%w[issues merge_requests notes]
)
transfer_service
.
execute
(
new_group
)
transfer_service
.
execute
(
new_group
)
...
@@ -80,7 +76,6 @@ RSpec.describe Groups::TransferService, '#execute' do
...
@@ -80,7 +76,6 @@ RSpec.describe Groups::TransferService, '#execute' do
end
end
end
end
end
end
end
context
'with epics'
do
context
'with epics'
do
context
'when epics feature is disabled'
do
context
'when epics feature is disabled'
do
...
...
ee/spec/services/projects/transfer_service_spec.rb
View file @
5cbe0bf9
...
@@ -70,17 +70,6 @@ RSpec.describe Projects::TransferService do
...
@@ -70,17 +70,6 @@ RSpec.describe Projects::TransferService do
stub_ee_application_setting
(
elasticsearch_indexing:
true
)
stub_ee_application_setting
(
elasticsearch_indexing:
true
)
end
end
context
'when visibility level changes'
do
let_it_be
(
:group
)
{
create
(
:group
,
:private
)
}
it
'reindexes the project and associated issues and notes'
do
expect
(
Elastic
::
ProcessBookkeepingService
).
to
receive
(
:track!
).
with
(
project
)
expect
(
ElasticAssociationIndexerWorker
).
to
receive
(
:perform_async
).
with
(
'Project'
,
project
.
id
,
%w[issues merge_requests notes]
)
subject
.
execute
(
group
)
end
end
context
'when elasticsearch_limit_indexing is on'
do
context
'when elasticsearch_limit_indexing is on'
do
before
do
before
do
stub_ee_application_setting
(
elasticsearch_limit_indexing:
true
)
stub_ee_application_setting
(
elasticsearch_limit_indexing:
true
)
...
@@ -93,7 +82,6 @@ RSpec.describe Projects::TransferService do
...
@@ -93,7 +82,6 @@ RSpec.describe Projects::TransferService do
it
'invalidates the cache and indexes the project and all associated data'
do
it
'invalidates the cache and indexes the project and all associated data'
do
expect
(
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project
)
expect
(
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project
)
expect
(
project
).
not_to
receive
(
:maintain_elasticsearch_destroy
)
expect
(
::
Gitlab
::
CurrentSettings
).
to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
).
with
(
project
.
id
).
and_call_original
expect
(
::
Gitlab
::
CurrentSettings
).
to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
).
with
(
project
.
id
).
and_call_original
subject
.
execute
(
group
)
subject
.
execute
(
group
)
...
@@ -106,9 +94,8 @@ RSpec.describe Projects::TransferService do
...
@@ -106,9 +94,8 @@ RSpec.describe Projects::TransferService do
create
(
:elasticsearch_indexed_namespace
,
namespace:
project
.
namespace
)
create
(
:elasticsearch_indexed_namespace
,
namespace:
project
.
namespace
)
end
end
it
'does not invalidate the cache does not index or delete anything'
do
it
'does not invalidate the cache and indexes the project and associated data'
do
expect
(
Elastic
::
ProcessInitialBookkeepingService
).
not_to
receive
(
:backfill_projects!
).
with
(
project
)
expect
(
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project
)
expect
(
project
).
not_to
receive
(
:maintain_elasticsearch_destroy
)
expect
(
::
Gitlab
::
CurrentSettings
).
not_to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
)
expect
(
::
Gitlab
::
CurrentSettings
).
not_to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
)
subject
.
execute
(
group
)
subject
.
execute
(
group
)
...
@@ -117,10 +104,9 @@ RSpec.describe Projects::TransferService do
...
@@ -117,10 +104,9 @@ RSpec.describe Projects::TransferService do
end
end
context
'when elasticsearch_limit_indexing is off'
do
context
'when elasticsearch_limit_indexing is off'
do
it
'does not invalidate the cache and reindexes the project only'
do
it
'does not invalidate the cache and indexes the project and all associated data'
do
expect
(
Elastic
::
ProcessBookkeepingService
).
to
receive
(
:track!
).
with
(
project
)
expect
(
Elastic
::
ProcessInitialBookkeepingService
).
to
receive
(
:backfill_projects!
).
with
(
project
)
expect
(
ElasticAssociationIndexerWorker
).
not_to
receive
(
:perform_async
)
expect
(
::
Gitlab
::
CurrentSettings
).
not_to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
)
expect
(
::
Gitlab
::
CurrentSettings
).
not_to
receive
(
:invalidate_elasticsearch_indexes_cache_for_project!
).
with
(
project
.
id
).
and_call_original
subject
.
execute
(
group
)
subject
.
execute
(
group
)
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