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
4773f35a
Commit
4773f35a
authored
Aug 23, 2021
by
Simon Tomlinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Log every service discovery event
parent
3458f39e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
7 deletions
+16
-7
lib/gitlab/database/load_balancing/host_list.rb
lib/gitlab/database/load_balancing/host_list.rb
+0
-6
lib/gitlab/database/load_balancing/service_discovery.rb
lib/gitlab/database/load_balancing/service_discovery.rb
+16
-1
No files found.
lib/gitlab/database/load_balancing/host_list.rb
View file @
4773f35a
...
...
@@ -35,12 +35,6 @@ module Gitlab
def
hosts
=
(
hosts
)
@mutex
.
synchronize
do
::
Gitlab
::
Database
::
LoadBalancing
::
Logger
.
info
(
event: :host_list_update
,
message:
"Updating the host list for service discovery"
,
host_list_length:
hosts
.
length
,
old_host_list_length:
@hosts
.
length
)
@hosts
=
hosts
unsafe_shuffle
end
...
...
lib/gitlab/database/load_balancing/service_discovery.rb
View file @
4773f35a
...
...
@@ -99,7 +99,22 @@ module Gitlab
current
=
addresses_from_load_balancer
replace_hosts
(
from_dns
)
if
from_dns
!=
current
if
from_dns
!=
current
::
Gitlab
::
Database
::
LoadBalancing
::
Logger
.
info
(
event: :host_list_update
,
message:
"Updating the host list for service discovery"
,
host_list_length:
from_dns
.
length
,
old_host_list_length:
current
.
length
)
replace_hosts
(
from_dns
)
else
::
Gitlab
::
Database
::
LoadBalancing
::
Logger
.
info
(
event: :host_list_unchanged
,
message:
"Unchanged host list for service discovery"
,
host_list_length:
from_dns
.
length
,
old_host_list_length:
current
.
length
)
end
interval
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