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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
# 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.
require 'mongo/cluster/topology'
require 'mongo/cluster/reapers/socket_reaper'
require 'mongo/cluster/reapers/cursor_reaper'
require 'mongo/cluster/periodic_executor'
require 'mongo/cluster/app_metadata'
module Mongo
# Represents a group of servers on the server side, either as a single server, a
# replica set, or a single or multiple mongos.
#
# @since 2.0.0
class Cluster
extend Forwardable
include Monitoring::Publishable
include Event::Subscriber
include Loggable
# The default number of mongos read retries.
#
# @since 2.1.1
MAX_READ_RETRIES = 1
# The default number of mongos write retries.
#
# @since 2.4.2
MAX_WRITE_RETRIES = 1
# The default mongos read retry interval, in seconds.
#
# @since 2.1.1
READ_RETRY_INTERVAL = 5
# How often an idle primary writes a no-op to the oplog.
#
# @since 2.4.0
IDLE_WRITE_PERIOD_SECONDS = 10
# The cluster time key in responses from mongos servers.
#
# @since 2.5.0
CLUSTER_TIME = 'clusterTime'.freeze
# @return [ Hash ] The options hash.
attr_reader :options
# @return [ Monitoring ] monitoring The monitoring.
attr_reader :monitoring
# @return [ Object ] The cluster topology.
attr_reader :topology
# @return [ Mongo::Cluster::AppMetadata ] The application metadata, used for connection
# handshakes.
#
# @since 2.4.0
attr_reader :app_metadata
# @return [ BSON::Document ] The latest cluster time seen.
#
# @since 2.5.0
attr_reader :cluster_time
# @private
#
# @since 2.5.1
attr_reader :session_pool
def_delegators :topology, :replica_set?, :replica_set_name, :sharded?,
:single?, :unknown?, :member_discovered
def_delegators :@cursor_reaper, :register_cursor, :schedule_kill_cursor, :unregister_cursor
# Determine if this cluster of servers is equal to another object. Checks the
# servers currently in the cluster, not what was configured.
#
# @example Is the cluster equal to the object?
# cluster == other
#
# @param [ Object ] other The object to compare to.
#
# @return [ true, false ] If the objects are equal.
#
# @since 2.0.0
def ==(other)
return false unless other.is_a?(Cluster)
addresses == other.addresses && options == other.options
end
# Add a server to the cluster with the provided address. Useful in
# auto-discovery of new servers when an existing server executes an ismaster
# and potentially non-configured servers were included.
#
# @example Add the server for the address to the cluster.
# cluster.add('127.0.0.1:27018')
#
# @param [ String ] host The address of the server to add.
#
# @return [ Server ] The newly added server, if not present already.
#
# @since 2.0.0
def add(host)
address = Address.new(host, options)
if !addresses.include?(address)
if addition_allowed?(address)
@update_lock.synchronize { @addresses.push(address) }
server = Server.new(address, self, @monitoring, event_listeners, options)
@update_lock.synchronize { @servers.push(server) }
server
end
end
end
# Determine if the cluster would select a readable server for the
# provided read preference.
#
# @example Is a readable server present?
# topology.has_readable_server?(server_selector)
#
# @param [ ServerSelector ] server_selector The server
# selector.
#
# @return [ true, false ] If a readable server is present.
#
# @since 2.4.0
def has_readable_server?(server_selector = nil)
topology.has_readable_server?(self, server_selector)
end
# Determine if the cluster would select a writable server.
#
# @example Is a writable server present?
# topology.has_writable_server?
#
# @return [ true, false ] If a writable server is present.
#
# @since 2.4.0
def has_writable_server?
topology.has_writable_server?(self)
end
# Instantiate the new cluster.
#
# @api private
#
# @example Instantiate the cluster.
# Mongo::Cluster.new(["127.0.0.1:27017"], monitoring)
#
# @note Cluster should never be directly instantiated outside of a Client.
#
# @param [ Array<String> ] seeds The addresses of the configured servers.
# @param [ Monitoring ] monitoring The monitoring.
# @param [ Hash ] options The options.
#
# @since 2.0.0
def initialize(seeds, monitoring, options = Options::Redacted.new)
@addresses = []
@servers = []
@monitoring = monitoring
@event_listeners = Event::Listeners.new
@options = options.freeze
@app_metadata = AppMetadata.new(self)
@update_lock = Mutex.new
@pool_lock = Mutex.new
@cluster_time = nil
@cluster_time_lock = Mutex.new
@topology = Topology.initial(seeds, monitoring, options)
Session::SessionPool.create(self)
publish_sdam_event(
Monitoring::TOPOLOGY_OPENING,
Monitoring::Event::TopologyOpening.new(@topology)
)
subscribe_to(Event::STANDALONE_DISCOVERED, Event::StandaloneDiscovered.new(self))
subscribe_to(Event::DESCRIPTION_CHANGED, Event::DescriptionChanged.new(self))
subscribe_to(Event::MEMBER_DISCOVERED, Event::MemberDiscovered.new(self))
seeds.each{ |seed| add(seed) }
publish_sdam_event(
Monitoring::TOPOLOGY_CHANGED,
Monitoring::Event::TopologyChanged.new(@topology, @topology)
) if @servers.size > 1
@cursor_reaper = CursorReaper.new
@socket_reaper = SocketReaper.new(self)
@periodic_executor = PeriodicExecutor.new(@cursor_reaper, @socket_reaper)
@periodic_executor.run!
ObjectSpace.define_finalizer(self, self.class.finalize(pools, @periodic_executor, @session_pool))
end
# Finalize the cluster for garbage collection. Disconnects all the scoped
# connection pools.
#
# @example Finalize the cluster.
# Cluster.finalize(pools)
#
# @param [ Hash<Address, Server::ConnectionPool> ] pools The connection pools.
# @param [ PeriodicExecutor ] periodic_executor The periodic executor.
# @param [ SessionPool ] session_pool The session pool.
#
# @return [ Proc ] The Finalizer.
#
# @since 2.2.0
def self.finalize(pools, periodic_executor, session_pool)
proc do
session_pool.end_sessions
periodic_executor.stop!
pools.values.each do |pool|
pool.disconnect!
end
end
end
# Get the nicer formatted string for use in inspection.
#
# @example Inspect the cluster.
# cluster.inspect
#
# @return [ String ] The cluster inspection.
#
# @since 2.0.0
def inspect
"#<Mongo::Cluster:0x#{object_id} servers=#{servers} topology=#{topology.display_name}>"
end
# Get the next primary server we can send an operation to.
#
# @example Get the next primary server.
# cluster.next_primary
#
# @param [ true, false ] ping Whether to ping the server before selection.
#
# @return [ Mongo::Server ] A primary server.
#
# @since 2.0.0
def next_primary(ping = true)
@primary_selector ||= ServerSelector.get(ServerSelector::PRIMARY)
@primary_selector.select_server(self, ping)
end
# Elect a primary server from the description that has just changed to a
# primary.
#
# @example Elect a primary server.
# cluster.elect_primary!(description)
#
# @param [ Server::Description ] description The newly elected primary.
#
# @return [ Topology ] The cluster topology.
#
# @since 2.0.0
def elect_primary!(description)
@topology = topology.elect_primary(description, servers_list)
end
# Get the maximum number of times the cluster can retry a read operation on
# a mongos.
#
# @example Get the max read retries.
# cluster.max_read_retries
#
# @return [ Integer ] The maximum retries.
#
# @since 2.1.1
def max_read_retries
options[:max_read_retries] || MAX_READ_RETRIES
end
# Get the scoped connection pool for the server.
#
# @example Get the connection pool.
# cluster.pool(server)
#
# @param [ Server ] server The server.
#
# @return [ Server::ConnectionPool ] The connection pool.
#
# @since 2.2.0
def pool(server)
@pool_lock.synchronize do
pools[server.address] ||= Server::ConnectionPool.get(server)
end
end
# Get the interval, in seconds, in which a mongos read operation is
# retried.
#
# @example Get the read retry interval.
# cluster.read_retry_interval
#
# @return [ Float ] The interval.
#
# @since 2.1.1
def read_retry_interval
options[:read_retry_interval] || READ_RETRY_INTERVAL
end
# Notify the cluster that a standalone server was discovered so that the
# topology can be updated accordingly.
#
# @example Notify the cluster that a standalone server was discovered.
# cluster.standalone_discovered
#
# @return [ Topology ] The cluster topology.
#
# @since 2.0.6
def standalone_discovered
@topology = topology.standalone_discovered
end
# Remove the server from the cluster for the provided address, if it
# exists.
#
# @example Remove the server from the cluster.
# server.remove('127.0.0.1:27017')
#
# @param [ String ] host The host/port or socket address.
#
# @since 2.0.0
def remove(host)
address = Address.new(host)
removed_servers = @servers.select { |s| s.address == address }
@update_lock.synchronize { @servers = @servers - removed_servers }
removed_servers.each{ |server| server.disconnect! } if removed_servers
publish_sdam_event(
Monitoring::SERVER_CLOSED,
Monitoring::Event::ServerClosed.new(address, topology)
)
@update_lock.synchronize { @addresses.reject! { |addr| addr == address } }
end
# Force a scan of all known servers in the cluster.
#
# @example Force a full cluster scan.
# cluster.scan!
#
# @note This operation is done synchronously. If servers in the cluster are
# down or slow to respond this can potentially be a slow operation.
#
# @return [ true ] Always true.
#
# @since 2.0.0
def scan!
servers_list.each{ |server| server.scan! } and true
end
# Get a list of server candidates from the cluster that can have operations
# executed on them.
#
# @example Get the server candidates for an operation.
# cluster.servers
#
# @return [ Array<Server> ] The candidate servers.
#
# @since 2.0.0
def servers
topology.servers(servers_list.compact).compact
end
# Disconnect all servers.
#
# @example Disconnect the cluster's servers.
# cluster.disconnect!
#
# @return [ true ] Always true.
#
# @since 2.1.0
def disconnect!
@periodic_executor.stop!
@servers.each { |server| server.disconnect! } and true
end
# Reconnect all servers.
#
# @example Reconnect the cluster's servers.
# cluster.reconnect!
#
# @return [ true ] Always true.
#
# @since 2.1.0
def reconnect!
scan!
servers.each { |server| server.reconnect! }
@periodic_executor.restart! and true
end
# Add hosts in a description to the cluster.
#
# @example Add hosts in a description to the cluster.
# cluster.add_hosts(description)
#
# @param [ Mongo::Server::Description ] description The description.
#
# @since 2.0.6
def add_hosts(description)
if topology.add_hosts?(description, servers_list)
description.servers.each { |s| add(s) }
end
end
# Remove hosts in a description from the cluster.
#
# @example Remove hosts in a description from the cluster.
# cluster.remove_hosts(description)
#
# @param [ Mongo::Server::Description ] description The description.
#
# @since 2.0.6
def remove_hosts(description)
if topology.remove_hosts?(description)
servers_list.each do |s|
remove(s.address.to_s) if topology.remove_server?(description, s)
end
end
end
# Create a cluster for the provided client, for use when we don't want the
# client's original cluster instance to be the same.
#
# @api private
#
# @example Create a cluster for the client.
# Cluster.create(client)
#
# @param [ Client ] client The client to create on.
#
# @return [ Cluster ] The cluster.
#
# @since 2.0.0
def self.create(client)
cluster = Cluster.new(
client.cluster.addresses.map(&:to_s),
client.instance_variable_get(:@monitoring).dup,
client.options
)
client.instance_variable_set(:@cluster, cluster)
end
# The addresses in the cluster.
#
# @example Get the addresses in the cluster.
# cluster.addresses
#
# @return [ Array<Mongo::Address> ] The addresses.
#
# @since 2.0.6
def addresses
addresses_list
end
# The logical session timeout value in minutes.
#
# @example Get the logical session timeout in minutes.
# cluster.logical_session_timeout
#
# @return [ Integer, nil ] The logical session timeout.
#
# @since 2.5.0
def logical_session_timeout
servers.inject(nil) do |min, server|
break unless timeout = server.logical_session_timeout
[timeout, (min || timeout)].min
end
end
# Update the max cluster time seen in a response.
#
# @example Update the cluster time.
# cluster.update_cluster_time(result)
#
# @param [ Operation::Result ] result The operation result containing the cluster time.
#
# @return [ Object ] The cluster time.
#
# @since 2.5.0
def update_cluster_time(result)
if cluster_time_doc = result.cluster_time
@cluster_time_lock.synchronize do
if @cluster_time.nil?
@cluster_time = cluster_time_doc
elsif cluster_time_doc[CLUSTER_TIME] > @cluster_time[CLUSTER_TIME]
@cluster_time = cluster_time_doc
end
end
end
end
private
def get_session(options = {})
return options[:session].validate!(self) if options[:session]
if sessions_supported?
Session.new(@session_pool.checkout, self, { implicit: true }.merge(options))
end
end
def with_session(options = {})
session = get_session(options)
yield(session)
ensure
session.end_session if (session && session.implicit?)
end
def sessions_supported?
if servers.empty? && !topology.single?
ServerSelector.get(mode: :primary_preferred).select_server(self)
end
!!logical_session_timeout
rescue Error::NoServerAvailable
end
def direct_connection?(address)
address.seed == @topology.seed
end
def addition_allowed?(address)
!@topology.single? || direct_connection?(address)
end
def pools
@pools ||= {}
end
def servers_list
@update_lock.synchronize { @servers.dup }
end
def addresses_list
@update_lock.synchronize { @addresses.dup }
end
end
end
|