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
bcf42d85
Commit
bcf42d85
authored
Apr 14, 2020
by
Dmitry Gruzd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ES indexed namespaces stale cache bug
parent
c5802dcf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
10 deletions
+28
-10
ee/app/models/elasticsearch_indexed_namespace.rb
ee/app/models/elasticsearch_indexed_namespace.rb
+5
-0
ee/changelogs/unreleased/213777-fix-stale-cache-bug.yml
ee/changelogs/unreleased/213777-fix-stale-cache-bug.yml
+5
-0
ee/spec/models/elasticsearch_indexed_namespace_spec.rb
ee/spec/models/elasticsearch_indexed_namespace_spec.rb
+18
-10
No files found.
ee/app/models/elasticsearch_indexed_namespace.rb
View file @
bcf42d85
...
...
@@ -27,6 +27,7 @@ class ElasticsearchIndexedNamespace < ApplicationRecord
end
def
self
.
drop_limited_ids_cache!
# To prevent stale cache we also drop ElasticsearchIndexedProject cache since it uses ElasticsearchIndexedNamespace
ElasticsearchIndexedProject
.
drop_limited_ids_cache!
super
end
...
...
@@ -56,6 +57,8 @@ class ElasticsearchIndexedNamespace < ApplicationRecord
ElasticNamespaceIndexerWorker
.
bulk_perform_async
(
jobs
)
# rubocop:disable Scalability/BulkPerformWithContext, CodeReuse/Worker
end
drop_limited_ids_cache!
end
def
self
.
unindex_last_n_namespaces_of_plan
(
plan
,
number_of_namespaces
)
...
...
@@ -73,6 +76,8 @@ class ElasticsearchIndexedNamespace < ApplicationRecord
ElasticNamespaceIndexerWorker
.
bulk_perform_async
(
jobs
)
# rubocop:disable Scalability/BulkPerformWithContext, CodeReuse/Worker
end
drop_limited_ids_cache!
end
private
...
...
ee/changelogs/unreleased/213777-fix-stale-cache-bug.yml
0 → 100644
View file @
bcf42d85
---
title
:
Fix Elasticsearch rollout stale cache bug
merge_request
:
29233
author
:
type
:
fixed
ee/spec/models/elasticsearch_indexed_namespace_spec.rb
View file @
bcf42d85
...
...
@@ -39,7 +39,7 @@ describe ElasticsearchIndexedNamespace do
end
end
context
'with plans'
do
context
'with plans'
,
:use_clean_rails_redis_caching
do
Plan
::
PAID_HOSTED_PLANS
.
each
do
|
plan
|
plan_factory
=
"
#{
plan
}
_plan"
let_it_be
(
plan_factory
)
{
create
(
plan_factory
)
}
...
...
@@ -54,8 +54,11 @@ describe ElasticsearchIndexedNamespace do
stub_ee_application_setting
(
elasticsearch_indexing:
false
)
end
def
get_indexed_namespaces
described_class
.
order
(
:created_at
).
pluck
(
:namespace_id
)
def
expect_indexed_namespaces_to_match
(
array
)
ids
=
described_class
.
order
(
:created_at
).
pluck
(
:namespace_id
)
expect
(
ids
).
to
eq
(
array
)
expect
(
ids
).
to
match_array
(
described_class
.
limited_ids_cached
)
end
def
expect_queue_to_contain
(
*
args
)
...
...
@@ -66,21 +69,23 @@ describe ElasticsearchIndexedNamespace do
describe
'.index_first_n_namespaces_of_plan'
do
it
'creates records, scoped by plan and ordered by namespace id'
do
expect
(
ElasticsearchIndexedNamespace
).
to
receive
(
:drop_limited_ids_cache!
).
and_call_original
.
exactly
(
3
).
times
ids
=
namespaces
.
map
(
&
:id
)
described_class
.
index_first_n_namespaces_of_plan
(
'gold'
,
1
)
expect
(
get_indexed_namespaces
).
to
eq
([
ids
[
0
]])
expect
_indexed_namespaces_to_match
([
ids
[
0
]])
expect_queue_to_contain
(
ids
[
0
],
"index"
)
described_class
.
index_first_n_namespaces_of_plan
(
'gold'
,
2
)
expect
(
get_indexed_namespaces
).
to
eq
([
ids
[
0
],
ids
[
2
]])
expect
_indexed_namespaces_to_match
([
ids
[
0
],
ids
[
2
]])
expect_queue_to_contain
(
ids
[
2
],
"index"
)
described_class
.
index_first_n_namespaces_of_plan
(
'silver'
,
1
)
expect
(
get_indexed_namespaces
).
to
eq
([
ids
[
0
],
ids
[
2
],
ids
[
1
]])
expect
_indexed_namespaces_to_match
([
ids
[
0
],
ids
[
2
],
ids
[
1
]])
expect_queue_to_contain
(
ids
[
1
],
"index"
)
end
end
...
...
@@ -92,23 +97,26 @@ describe ElasticsearchIndexedNamespace do
end
it
'creates records, scoped by plan and ordered by namespace id'
do
expect
(
ElasticsearchIndexedNamespace
).
to
receive
(
:drop_limited_ids_cache!
).
and_call_original
.
exactly
(
3
).
times
ids
=
namespaces
.
map
(
&
:id
)
expect
(
get_indexed_namespaces
).
to
contain_exactly
(
ids
[
0
],
ids
[
2
],
ids
[
1
])
expect
_indexed_namespaces_to_match
([
ids
[
0
],
ids
[
2
],
ids
[
1
]
])
described_class
.
unindex_last_n_namespaces_of_plan
(
'gold'
,
1
)
expect
(
get_indexed_namespaces
).
to
contain_exactly
(
ids
[
0
],
ids
[
1
])
expect
_indexed_namespaces_to_match
([
ids
[
0
],
ids
[
1
]
])
expect_queue_to_contain
(
ids
[
2
],
"delete"
)
described_class
.
unindex_last_n_namespaces_of_plan
(
'silver'
,
1
)
expect
(
get_indexed_namespaces
).
to
contain_exactly
(
ids
[
0
])
expect_indexed_namespaces_to_match
([
ids
[
0
]])
expect_queue_to_contain
(
ids
[
1
],
"delete"
)
described_class
.
unindex_last_n_namespaces_of_plan
(
'gold'
,
1
)
expect
(
get_indexed_namespaces
).
to
be_empty
expect
_indexed_namespaces_to_match
([])
expect_queue_to_contain
(
ids
[
0
],
"delete"
)
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