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
b53e91c5
Commit
b53e91c5
authored
Jun 07, 2021
by
Michael Kozono
Committed by
David Kim
Jun 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Geo: Secondaries react to MR and issue count changes [RUN AS-IF-FOSS]
parent
653ded79
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
163 additions
and
30 deletions
+163
-30
app/services/base_count_service.rb
app/services/base_count_service.rb
+2
-2
ee/app/services/ee/base_count_service.rb
ee/app/services/ee/base_count_service.rb
+6
-6
ee/app/services/geo/cache_invalidation_event_store.rb
ee/app/services/geo/cache_invalidation_event_store.rb
+2
-1
ee/lib/ee/gitlab/cache.rb
ee/lib/ee/gitlab/cache.rb
+25
-0
ee/spec/lib/gitlab/cache_spec.rb
ee/spec/lib/gitlab/cache_spec.rb
+87
-0
ee/spec/services/base_count_service_spec.rb
ee/spec/services/base_count_service_spec.rb
+5
-20
ee/spec/services/geo/cache_invalidation_event_store_spec.rb
ee/spec/services/geo/cache_invalidation_event_store_spec.rb
+16
-0
lib/gitlab/cache.rb
lib/gitlab/cache.rb
+7
-0
spec/lib/gitlab/cache_spec.rb
spec/lib/gitlab/cache_spec.rb
+12
-0
spec/services/issues/close_service_spec.rb
spec/services/issues/close_service_spec.rb
+1
-1
No files found.
app/services/base_count_service.rb
View file @
b53e91c5
...
@@ -27,7 +27,7 @@ class BaseCountService
...
@@ -27,7 +27,7 @@ class BaseCountService
end
end
def
delete_cache
def
delete_cache
Rails
.
c
ache
.
delete
(
cache_key
)
::
Gitlab
::
C
ache
.
delete
(
cache_key
)
end
end
def
raw?
def
raw?
...
@@ -49,4 +49,4 @@ class BaseCountService
...
@@ -49,4 +49,4 @@ class BaseCountService
end
end
end
end
BaseCountService
.
prepend_mod
_with
(
'BaseCountService'
)
BaseCountService
.
prepend_mod
ee/app/services/ee/base_count_service.rb
View file @
b53e91c5
...
@@ -4,12 +4,12 @@ module EE
...
@@ -4,12 +4,12 @@ module EE
module
BaseCountService
module
BaseCountService
extend
::
Gitlab
::
Utils
::
Override
extend
::
Gitlab
::
Utils
::
Override
#
geo secondary cache should expire quicker than primary, otherwise various counts
#
When updating a cached count on a Geo primary, also invalidate the key on
#
could be incorrect for 2 week
s.
#
Geo secondarie
s.
override
:
cache_options
override
:
update_cache_for_key
def
cache_options
def
update_cache_for_key
(
key
,
&
block
)
super
.
tap
do
|
options
|
super
.
tap
do
options
[
:expires_in
]
=
20
.
minutes
if
::
Gitlab
::
Geo
.
secondary?
::
Gitlab
::
Cache
.
delete_on_geo_secondaries
(
key
)
end
end
end
end
end
end
...
...
ee/app/services/geo/cache_invalidation_event_store.rb
View file @
b53e91c5
...
@@ -7,7 +7,8 @@ module Geo
...
@@ -7,7 +7,8 @@ module Geo
attr_reader
:key
attr_reader
:key
def
initialize
(
key
)
def
initialize
(
key
)
@key
=
key
# Rails cache keys are often not `String`, see https://guides.rubyonrails.org/caching_with_rails.html#cache-keys
@key
=
::
ActiveSupport
::
Cache
.
expand_cache_key
(
key
)
end
end
private
private
...
...
ee/lib/ee/gitlab/cache.rb
0 → 100644
View file @
b53e91c5
# frozen_string_literal: true
module
EE
module
Gitlab
module
Cache
extend
ActiveSupport
::
Concern
class_methods
do
extend
::
Gitlab
::
Utils
::
Override
# Utility to `Rails.cache.delete` *and* propagate to Geo secondaries.
override
:delete
def
delete
(
key
)
super
.
tap
do
delete_on_geo_secondaries
(
key
)
end
end
def
delete_on_geo_secondaries
(
key
)
Geo
::
CacheInvalidationEventStore
.
new
(
key
).
create!
end
end
end
end
end
ee/spec/lib/gitlab/cache_spec.rb
0 → 100644
View file @
b53e91c5
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
Gitlab
::
Cache
do
include
::
EE
::
GeoHelpers
describe
'.delete'
do
let
(
:key
)
{
%w{a cache key}
}
subject
(
:delete
)
{
described_class
.
delete
(
key
)
}
it
'calls Rails.cache.delete'
do
expect
(
Rails
.
cache
).
to
receive
(
:delete
).
with
(
key
)
delete
end
it
'calls .delete_on_geo_secondaries'
do
expect
(
described_class
).
to
receive
(
:delete_on_geo_secondaries
).
with
(
key
)
delete
end
end
describe
'.delete_on_geo_secondaries'
do
let
(
:key
)
{
%w{a cache key}
}
subject
(
:delete_on_geo_secondaries
)
{
described_class
.
delete_on_geo_secondaries
(
key
)
}
context
'without Geo'
do
it
'does not create a Geo::CacheInvalidationEvent'
do
expect
do
delete_on_geo_secondaries
end
.
not_to
change
{
::
Geo
::
CacheInvalidationEvent
.
count
}
end
end
context
'for a Geo primary site'
do
before
do
stub_primary_node
end
context
'when there is at least one Geo secondary site'
do
before
do
allow
(
::
Gitlab
::
Geo
).
to
receive
(
:secondary_nodes
).
and_return
(
double
(
any?:
true
))
end
it
'creates a Geo::CacheInvalidationEvent'
do
expect
do
delete_on_geo_secondaries
end
.
to
change
{
::
Geo
::
CacheInvalidationEvent
.
count
}.
by
(
1
)
end
end
context
'when there are no Geo secondary sites'
do
before
do
allow
(
::
Gitlab
::
Geo
).
to
receive
(
:secondary_nodes
).
and_return
(
double
(
any?:
false
))
end
it
'does not create a Geo::CacheInvalidationEvent'
do
expect
do
delete_on_geo_secondaries
end
.
not_to
change
{
::
Geo
::
CacheInvalidationEvent
.
count
}
end
end
end
context
'for a Geo secondary site'
do
before
do
stub_secondary_node
end
context
'when there is at least one Geo secondary site'
do
before
do
allow
(
::
Gitlab
::
Geo
).
to
receive
(
:secondary_nodes
).
and_return
(
double
(
any?:
true
))
end
it
'does not create a Geo::CacheInvalidationEvent'
do
expect
do
delete_on_geo_secondaries
end
.
not_to
change
{
::
Geo
::
CacheInvalidationEvent
.
count
}
end
end
end
end
end
ee/spec/services/base_count_service_spec.rb
View file @
b53e91c5
...
@@ -5,28 +5,13 @@ require 'spec_helper'
...
@@ -5,28 +5,13 @@ require 'spec_helper'
RSpec
.
describe
BaseCountService
do
RSpec
.
describe
BaseCountService
do
include
::
EE
::
GeoHelpers
include
::
EE
::
GeoHelpers
describe
'#
cache_options
'
do
describe
'#
update_cache_for_key
'
do
subject
{
described_class
.
new
.
cache_options
}
let
(
:key
)
{
%w{a cache key}
}
it
'
returns the default
'
do
it
'
calls Gitlab::Cache.delete_on_geo_secondaries
'
do
stub_current_geo_node
(
nil
)
expect
(
::
Gitlab
::
Cache
).
to
receive
(
:delete_on_geo_secondaries
).
with
(
key
)
is_expected
.
to
include
(
:raw
)
described_class
.
new
.
update_cache_for_key
(
key
)
{
123
}
is_expected
.
not_to
include
(
:expires_in
)
end
it
'returns default on a Geo primary'
do
stub_current_geo_node
(
create
(
:geo_node
,
:primary
))
is_expected
.
to
include
(
:raw
)
is_expected
.
not_to
include
(
:expires_in
)
end
it
'returns cache of 20 mins on a Geo secondary'
do
stub_current_geo_node
(
create
(
:geo_node
))
is_expected
.
to
include
(
:raw
)
is_expected
.
to
include
(
expires_in:
20
.
minutes
)
end
end
end
end
end
end
ee/spec/services/geo/cache_invalidation_event_store_spec.rb
View file @
b53e91c5
...
@@ -11,6 +11,22 @@ RSpec.describe Geo::CacheInvalidationEventStore do
...
@@ -11,6 +11,22 @@ RSpec.describe Geo::CacheInvalidationEventStore do
subject
{
described_class
.
new
(
cache_key
)
}
subject
{
described_class
.
new
(
cache_key
)
}
describe
'#initialize'
do
context
'when the key is a String'
do
it
'does not modify the key'
do
expect
(
subject
.
key
).
to
eq
(
cache_key
)
end
end
context
'when the key is an Array'
do
let
(
:cache_key
)
{
%w{a cache key}
}
it
'expands the key'
do
expect
(
subject
.
key
).
to
eq
(
'a/cache/key'
)
end
end
end
describe
'#create'
do
describe
'#create'
do
it_behaves_like
'a Geo event store'
,
Geo
::
CacheInvalidationEvent
it_behaves_like
'a Geo event store'
,
Geo
::
CacheInvalidationEvent
...
...
lib/gitlab/cache.rb
View file @
b53e91c5
...
@@ -13,6 +13,13 @@ module Gitlab
...
@@ -13,6 +13,13 @@ module Gitlab
end
end
end
end
end
end
# Hook for EE
def
delete
(
key
)
Rails
.
cache
.
delete
(
key
)
end
end
end
end
end
end
end
Gitlab
::
Cache
.
prepend_mod
spec/lib/gitlab/cache_spec.rb
View file @
b53e91c5
...
@@ -26,4 +26,16 @@ RSpec.describe Gitlab::Cache, :request_store do
...
@@ -26,4 +26,16 @@ RSpec.describe Gitlab::Cache, :request_store do
expect
(
subject
.
call
).
to
eq
(
"return value"
)
expect
(
subject
.
call
).
to
eq
(
"return value"
)
end
end
end
end
describe
'.delete'
do
let
(
:key
)
{
%w{a cache key}
}
subject
(
:delete
)
{
described_class
.
delete
(
key
)
}
it
'calls Rails.cache.delete'
do
expect
(
Rails
.
cache
).
to
receive
(
:delete
).
with
(
key
)
delete
end
end
end
end
spec/services/issues/close_service_spec.rb
View file @
b53e91c5
...
@@ -222,7 +222,7 @@ RSpec.describe Issues::CloseService do
...
@@ -222,7 +222,7 @@ RSpec.describe Issues::CloseService do
it
'verifies the number of queries'
do
it
'verifies the number of queries'
do
recorded
=
ActiveRecord
::
QueryRecorder
.
new
{
close_issue
}
recorded
=
ActiveRecord
::
QueryRecorder
.
new
{
close_issue
}
expected_queries
=
2
3
expected_queries
=
2
4
expect
(
recorded
.
count
).
to
be
<=
expected_queries
expect
(
recorded
.
count
).
to
be
<=
expected_queries
expect
(
recorded
.
cached_count
).
to
eq
(
0
)
expect
(
recorded
.
cached_count
).
to
eq
(
0
)
...
...
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