1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
# Copyright (C) 2014-2017 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
module Mongo
module ServerSelector
# Provides common behavior for filtering a list of servers by server mode or tag set.
#
# @since 2.0.0
module Selectable
# @return [ Hash ] options The options.
attr_reader :options
# @return [ Array ] tag_sets The tag sets used to select servers.
attr_reader :tag_sets
# @return [ Integer ] max_staleness The maximum replication lag, in seconds, that a
# secondary can suffer and still be eligible for a read.
#
# @since 2.4.0
attr_reader :max_staleness
# Check equality of two server selector.
#
# @example Check server selector equality.
# preference == other
#
# @param [ Object ] other The other preference.
#
# @return [ true, false ] Whether the objects are equal.
#
# @since 2.0.0
def ==(other)
name == other.name &&
tag_sets == other.tag_sets &&
max_staleness == other.max_staleness
end
# Initialize the server selector.
#
# @example Initialize the selector.
# Mongo::ServerSelector::Secondary.new(:tag_sets => [{'dc' => 'nyc'}])
#
# @example Initialize the preference with no options.
# Mongo::ServerSelector::Secondary.new
#
# @param [ Hash ] options The server preference options.
#
# @option options [ Integer ] :local_threshold The local threshold boundary for
# nearest selection in seconds.
#
# @raise [ Error::InvalidServerPreference ] If tag sets are specified
# but not allowed.
#
# @since 2.0.0
def initialize(options = {})
@options = (options || {}).freeze
@tag_sets = (options[:tag_sets] || []).freeze
@max_staleness = options[:max_staleness] unless options[:max_staleness] == -1
validate!
end
# Inspect the server selector.
#
# @example Inspect the server selector.
# selector.inspect
#
# @return [ String ] The inspection.
#
# @since 2.2.0
def inspect
"#<#{self.class.name}:0x#{object_id} tag_sets=#{tag_sets.inspect} max_staleness=#{max_staleness.inspect}>"
end
# Select a server from eligible candidates.
#
# @example Select a server from the cluster.
# selector.select_server(cluster)
#
# @param [ Mongo::Cluster ] cluster The cluster from which to select an eligible server.
#
# @return [ Mongo::Server ] A server matching the server preference.
#
# @since 2.0.0
def select_server(cluster, ping = true)
@local_threshold = cluster.options[:local_threshold] || LOCAL_THRESHOLD
@server_selection_timeout = cluster.options[:server_selection_timeout] || SERVER_SELECTION_TIMEOUT
deadline = Time.now + server_selection_timeout
while (deadline - Time.now) > 0
servers = candidates(cluster)
if servers && !servers.compact.empty?
server = servers.first
# There is no point pinging a standalone as the subsequent scan is
# not going to change anything about the cluster.
if ping && !cluster.single?
if server.connectable?
server.check_driver_support!
return server
end
else
server.check_driver_support!
return server
end
end
cluster.scan!
end
raise Error::NoServerAvailable.new(self)
end
# Get the timeout for server selection.
#
# @example Get the server selection timeout, in seconds.
# selector.server_selection_timeout
#
# @return [ Float ] The timeout.
#
# @since 2.0.0
#
# @deprecated This setting is now taken from the cluster options when a server is selected.
# Will be removed in 3.0.
def server_selection_timeout
@server_selection_timeout ||=
(options[:server_selection_timeout] || ServerSelector::SERVER_SELECTION_TIMEOUT)
end
# Get the local threshold boundary for nearest selection in seconds.
#
# @example Get the local threshold.
# selector.local_threshold
#
# @return [ Float ] The local threshold.
#
# @since 2.0.0
#
# @deprecated This setting is now taken from the cluster options when a server is selected.
# Will be removed in 3.0.
def local_threshold
@local_threshold ||= (options[:local_threshold] || ServerSelector::LOCAL_THRESHOLD)
end
# Get the potential candidates to select from the cluster.
#
# @example Get the server candidates.
# selectable.candidates(cluster)
#
# @param [ Cluster ] cluster The cluster.
#
# @return [ Array<Server> ] The candidate servers.
#
# @since 2.4.0
def candidates(cluster)
if cluster.single?
cluster.servers.each { |server| validate_max_staleness_support!(server) }
elsif cluster.sharded?
near_servers(cluster.servers).each { |server| validate_max_staleness_support!(server) }
else
validate_max_staleness_value!(cluster) unless cluster.unknown?
select(cluster.servers)
end
end
private
# Select the primary from a list of provided candidates.
#
# @param [ Array ] candidates List of candidate servers to select the
# primary from.
#
# @return [ Array ] The primary.
#
# @since 2.0.0
def primary(candidates)
candidates.select do |server|
server.primary?
end
end
# Select the secondaries from a list of provided candidates.
#
# @param [ Array ] candidates List of candidate servers to select the
# secondaries from.
#
# @return [ Array ] The secondary servers.
#
# @since 2.0.0
def secondaries(candidates)
matching_servers = candidates.select(&:secondary?)
matching_servers = filter_stale_servers(matching_servers, primary(candidates).first)
matching_servers = match_tag_sets(matching_servers) unless tag_sets.empty?
matching_servers
end
# Select the near servers from a list of provided candidates, taking the
# local threshold into account.
#
# @param [ Array ] candidates List of candidate servers to select the
# near servers from.
#
# @return [ Array ] The near servers.
#
# @since 2.0.0
def near_servers(candidates = [])
return candidates if candidates.empty?
nearest_server = candidates.min_by(&:average_round_trip_time)
threshold = nearest_server.average_round_trip_time + local_threshold
candidates.select { |server| server.average_round_trip_time <= threshold }.shuffle!
end
# Select the servers matching the defined tag sets.
#
# @param [ Array ] candidates List of candidate servers from which those
# matching the defined tag sets should be selected.
#
# @return [ Array ] The servers matching the defined tag sets.
#
# @since 2.0.0
def match_tag_sets(candidates)
matches = []
tag_sets.find do |tag_set|
matches = candidates.select { |server| server.matches_tag_set?(tag_set) }
!matches.empty?
end
matches || []
end
def filter_stale_servers(candidates, primary = nil)
return candidates unless @max_staleness
max_staleness_ms = @max_staleness * 1000
if primary
candidates.select do |server|
validate_max_staleness_support!(server)
staleness = (server.last_scan - server.last_write_date) -
(primary.last_scan - primary.last_write_date) +
(server.heartbeat_frequency_seconds * 1000)
staleness <= max_staleness_ms
end
else
max_write_date = candidates.collect(&:last_write_date).max
candidates.select do |server|
validate_max_staleness_support!(server)
staleness = max_write_date - server.last_write_date + (server.heartbeat_frequency_seconds * 1000)
staleness <= max_staleness_ms
end
end
end
def validate!
if !@tag_sets.all? { |set| set.empty? } && !tags_allowed?
raise Error::InvalidServerPreference.new(Error::InvalidServerPreference::NO_TAG_SUPPORT)
elsif @max_staleness && !max_staleness_allowed?
raise Error::InvalidServerPreference.new(Error::InvalidServerPreference::NO_MAX_STALENESS_SUPPORT)
end
end
def validate_max_staleness_support!(server)
if @max_staleness && !server.features.max_staleness_enabled?
raise Error::InvalidServerPreference.new(Error::InvalidServerPreference::NO_MAX_STALENESS_WITH_LEGACY_SERVER)
end
end
def validate_max_staleness_value!(cluster)
if @max_staleness
heartbeat_frequency_seconds = cluster.options[:heartbeat_frequency] || Server::Monitor::HEARTBEAT_FREQUENCY
unless @max_staleness >= [ SMALLEST_MAX_STALENESS_SECONDS,
(heartbeat_frequency_seconds + Cluster::IDLE_WRITE_PERIOD_SECONDS) ].max
raise Error::InvalidServerPreference.new(Error::InvalidServerPreference::INVALID_MAX_STALENESS)
end
end
end
end
end
end
|