debian-mirror-gitlab/lib/gitaly/server.rb

125 lines
3 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitaly
class Server
2020-01-01 13:55:28 +05:30
SHA_VERSION_REGEX = /\A\d+\.\d+\.\d+-\d+-g([a-f0-9]{8})\z/.freeze
2020-06-23 00:09:42 +05:30
DEFAULT_REPLICATION_FACTOR = 1
2020-01-01 13:55:28 +05:30
2019-09-30 21:07:59 +05:30
class << self
def all
Gitlab.config.repositories.storages.keys.map { |s| Gitaly::Server.new(s) }
end
def count
all.size
end
def filesystems
all.map(&:filesystem_type).compact.uniq
end
2020-06-23 00:09:42 +05:30
def gitaly_clusters
all.count { |g| g.replication_factor > DEFAULT_REPLICATION_FACTOR }
end
2018-03-17 18:26:18 +05:30
end
attr_reader :storage
def initialize(storage)
@storage = storage
end
def server_version
info.server_version
end
def git_binary_version
info.git_version
end
2020-01-01 13:55:28 +05:30
def expected_version?
server_version == Gitlab::GitalyClient.expected_server_version || matches_sha?
2018-03-17 18:26:18 +05:30
end
2020-01-01 13:55:28 +05:30
alias_method :up_to_date?, :expected_version?
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
def read_writeable?
readable? && writeable?
end
def readable?
storage_status&.readable
end
def writeable?
storage_status&.writeable
end
2019-09-30 21:07:59 +05:30
def filesystem_type
storage_status&.fs_type
end
2020-03-13 15:44:24 +05:30
def disk_used
disk_statistics_storage_status&.used
end
def disk_available
disk_statistics_storage_status&.available
end
# Simple convenience method for when obtaining both used and available
# statistics at once is preferred.
def disk_stats
disk_statistics_storage_status
end
2018-03-17 18:26:18 +05:30
def address
Gitlab::GitalyClient.address(@storage)
rescue RuntimeError => e
"Error getting the address: #{e.message}"
end
2020-06-23 00:09:42 +05:30
def replication_factor
storage_status&.replication_factor
end
2018-03-17 18:26:18 +05:30
private
2018-11-08 19:23:39 +05:30
def storage_status
@storage_status ||= info.storage_statuses.find { |s| s.storage_name == storage }
end
2020-03-13 15:44:24 +05:30
def disk_statistics_storage_status
@disk_statistics_storage_status ||= disk_statistics.storage_statuses.find { |s| s.storage_name == storage }
end
2020-01-01 13:55:28 +05:30
def matches_sha?
match = server_version.match(SHA_VERSION_REGEX)
return false unless match
Gitlab::GitalyClient.expected_server_version.start_with?(match[1])
end
2018-03-17 18:26:18 +05:30
def info
@info ||=
begin
Gitlab::GitalyClient::ServerService.new(@storage).info
2020-03-13 15:44:24 +05:30
rescue GRPC::Unavailable, GRPC::DeadlineExceeded => ex
Gitlab::ErrorTracking.track_exception(ex)
# This will show the server as being out of date
Gitaly::ServerInfoResponse.new(git_version: '', server_version: '', storage_statuses: [])
end
end
def disk_statistics
@disk_statistics ||=
begin
Gitlab::GitalyClient::ServerService.new(@storage).disk_statistics
rescue GRPC::Unavailable, GRPC::DeadlineExceeded => ex
Gitlab::ErrorTracking.track_exception(ex)
2018-03-17 18:26:18 +05:30
# This will show the server as being out of date
2018-11-08 19:23:39 +05:30
Gitaly::ServerInfoResponse.new(git_version: '', server_version: '', storage_statuses: [])
2018-03-17 18:26:18 +05:30
end
end
end
end