Class: Mongo::Server
- Inherits:
-
Object
- Object
- Mongo::Server
- Extended by:
- Forwardable
- Includes:
- Event::Publisher, Monitoring::Publishable
- Defined in:
- lib/mongo/server.rb,
lib/mongo/server/context.rb,
lib/mongo/server/monitor.rb,
lib/mongo/server/connection.rb,
lib/mongo/server/connectable.rb,
lib/mongo/server/description.rb,
lib/mongo/server/app_metadata.rb,
lib/mongo/server/connection_base.rb,
lib/mongo/server/connection_pool.rb,
lib/mongo/server/connection_common.rb,
lib/mongo/server/monitor/connection.rb,
lib/mongo/server/pending_connection.rb,
lib/mongo/server/description/features.rb,
lib/mongo/server/monitor/app_metadata.rb,
lib/mongo/server/round_trip_time_averager.rb,
lib/mongo/server/connection_pool/populator.rb
Overview
Represents a single server on the server side that can be standalone, part of a replica set, or a mongos.
Defined Under Namespace
Modules: Connectable Classes: AppMetadata, Connection, ConnectionBase, ConnectionCommon, ConnectionPool, Context, Description, Monitor, PendingConnection, Populator, RoundTripTimeAverager
Constant Summary collapse
- CONNECT_TIMEOUT =
The default time in seconds to timeout a connection attempt.
10.freeze
Constants included from Loggable
Instance Attribute Summary collapse
-
#address ⇒ String
readonly
The configured address for the server.
-
#cluster ⇒ Cluster
readonly
Cluster The server cluster.
-
#description ⇒ Server::Description
readonly
Description The server description the monitor refreshes.
-
#monitor ⇒ nil | Monitor
readonly
Monitor The server monitor.
-
#monitoring ⇒ Monitoring
readonly
Monitoring The monitoring.
-
#options ⇒ Hash
readonly
The options hash.
-
#round_trip_time_averager ⇒ RoundTripTimeAverager
readonly
private
Round trip time averager object.
-
#scan_semaphore ⇒ Semaphore
readonly
private
Semaphore to signal to request an immediate scan of this server by its monitor, if one is running.
Attributes included from Event::Publisher
Class Method Summary collapse
-
.finalize(monitor) ⇒ Object
When the server is flagged for garbage collection, stop the monitor thread.
Instance Method Summary collapse
-
#==(other) ⇒ true, false
Is this server equal to another?.
- #clear_connection_pool ⇒ Object private
- #compressor ⇒ String | nil deprecated Deprecated.
-
#connectable? ⇒ true, false
deprecated
Deprecated.
No longer necessary with Server Selection specification.
-
#connected? ⇒ true|false
private
Whether the server is connected.
-
#context ⇒ Mongo::Server::Context
deprecated
Deprecated.
Will be removed in version 3.0
-
#disconnect! ⇒ true
Disconnect the driver from this server.
-
#handle_auth_failure! ⇒ Object
Handle authentication failure.
-
#handle_handshake_failure! ⇒ Object
private
Handle handshake failure.
- #heartbeat_frequency ⇒ Object (also: #heartbeat_frequency_seconds) deprecated Deprecated.
-
#initialize(address, cluster, monitoring, event_listeners, options = {}) ⇒ Server
constructor
private
Instantiate a new server object.
-
#inspect ⇒ String
Get a pretty printed server inspection.
-
#last_scan ⇒ Time | nil
Last_scan The time when the last server scan completed, or nil if the server has not been scanned yet.
-
#matches_tag_set?(tag_set) ⇒ true, false
Determine if the provided tags are a subset of the server’s tags.
- #next_connection_id ⇒ Object private
-
#pool ⇒ Mongo::Server::ConnectionPool
Get the connection pool for this server.
-
#reconnect! ⇒ true
Restart the server monitor.
-
#retry_reads? ⇒ Boolean
private
Whether the server supports modern read retries.
-
#retry_writes? ⇒ true, false
Will writes sent to this server be retried.
-
#start_monitoring ⇒ Object
private
Start monitoring the server.
-
#status ⇒ String
private
String representing server status (e.g. PRIMARY).
- #summary ⇒ Object
-
#unknown!(options = {}) ⇒ Object
Marks server unknown and publishes the associated SDAM event (server description changed).
- #update_description(description) ⇒ Object private
- #update_last_scan ⇒ Object private
-
#with_connection(&block) ⇒ Object
Execute a block of code with a connection, that is checked out of the server’s pool and then checked back in.
Methods included from Event::Publisher
Methods included from Monitoring::Publishable
#publish_cmap_event, #publish_event, #publish_sdam_event
Methods included from Loggable
#log_debug, #log_error, #log_fatal, #log_info, #log_warn, #logger
Constructor Details
#initialize(address, cluster, monitoring, event_listeners, options = {}) ⇒ Server
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Server must never be directly instantiated outside of a Cluster.
Instantiate a new server object. Will start the background refresh and subscribe to the appropriate events.
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 |
# File 'lib/mongo/server.rb', line 56 def initialize(address, cluster, monitoring, event_listeners, = {}) @address = address @cluster = cluster @monitoring = monitoring = .dup _monitor = .delete(:monitor) @options = .freeze @event_listeners = event_listeners @connection_id_gen = Class.new do include Id end @scan_semaphore = Semaphore.new @round_trip_time_averager = RoundTripTimeAverager.new @description = Description.new(address, {}) @last_scan = nil unless [:monitoring_io] == false @monitor = Monitor.new(self, event_listeners, monitoring, .merge( app_metadata: Monitor::AppMetadata.new(cluster.), )) unless _monitor == false start_monitoring end end @connected = true @pool_lock = Mutex.new end |
Instance Attribute Details
#address ⇒ String (readonly)
Returns The configured address for the server.
85 86 87 |
# File 'lib/mongo/server.rb', line 85 def address @address end |
#cluster ⇒ Cluster (readonly)
Returns cluster The server cluster.
88 89 90 |
# File 'lib/mongo/server.rb', line 88 def cluster @cluster end |
#description ⇒ Server::Description (readonly)
Returns description The server description the monitor refreshes.
102 103 104 |
# File 'lib/mongo/server.rb', line 102 def description @description end |
#monitor ⇒ nil | Monitor (readonly)
Returns monitor The server monitor. nil if the servenr was created with monitoring_io: false option.
92 93 94 |
# File 'lib/mongo/server.rb', line 92 def monitor @monitor end |
#monitoring ⇒ Monitoring (readonly)
Returns monitoring The monitoring.
98 99 100 |
# File 'lib/mongo/server.rb', line 98 def monitoring @monitoring end |
#options ⇒ Hash (readonly)
Returns The options hash.
95 96 97 |
# File 'lib/mongo/server.rb', line 95 def @options end |
#round_trip_time_averager ⇒ RoundTripTimeAverager (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns Round trip time averager object.
183 184 185 |
# File 'lib/mongo/server.rb', line 183 def round_trip_time_averager @round_trip_time_averager end |
#scan_semaphore ⇒ Semaphore (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns Semaphore to signal to request an immediate scan of this server by its monitor, if one is running.
179 180 181 |
# File 'lib/mongo/server.rb', line 179 def scan_semaphore @scan_semaphore end |
Class Method Details
.finalize(monitor) ⇒ Object
When the server is flagged for garbage collection, stop the monitor thread.
281 282 283 |
# File 'lib/mongo/server.rb', line 281 def self.finalize(monitor) proc { monitor.stop! } end |
Instance Method Details
#==(other) ⇒ true, false
Is this server equal to another?
195 196 197 198 |
# File 'lib/mongo/server.rb', line 195 def ==(other) return false unless other.is_a?(Server) address == other.address end |
#clear_connection_pool ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
509 510 511 512 513 514 515 |
# File 'lib/mongo/server.rb', line 509 def clear_connection_pool @pool_lock.synchronize do if @pool @pool.disconnect! end end end |
#compressor ⇒ String | nil
Compression is negotiated for each connection separately.
The compressor negotiated by the server monitor, if any.
This attribute is nil if no server check has not yet completed, and if no compression was negatiated.
137 138 139 140 141 142 143 |
# File 'lib/mongo/server.rb', line 137 def compressor if monitor monitor.compressor else nil end end |
#connectable? ⇒ true, false
No longer necessary with Server Selection specification.
Determine if a connection to the server is able to be established and messages can be sent to it.
225 |
# File 'lib/mongo/server.rb', line 225 def connectable?; end |
#connected? ⇒ true|false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Whether the server is connected.
268 269 270 |
# File 'lib/mongo/server.rb', line 268 def connected? @connected end |
#context ⇒ Mongo::Server::Context
Will be removed in version 3.0
Get a new context for this server in which to send messages.
210 211 212 |
# File 'lib/mongo/server.rb', line 210 def context Context.new(self) end |
#disconnect! ⇒ true
Disconnect the driver from this server.
Disconnects all idle connections to this server in its connection pool, if any exist. Stops the populator of the connection pool, if it is running. Does not immediately close connections which are presently checked out (i.e. in use) - such connections will be closed when they are returned to their respective connection pools. Stop the server’s background monitor.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/mongo/server.rb', line 239 def disconnect! if monitor monitor.stop! end _pool = @pool_lock.synchronize do @pool end if _pool # For backwards compatibility we disconnect/clear the pool rather # than close it here. We also stop the populator which allows the # the pool to continue providing connections but stops it from # connecting in background on clients/servers that are in fact # intended to be closed and no longer used. begin _pool.disconnect!(stop_populator: true) rescue Error::PoolClosedError # If the pool was already closed, we don't need to do anything here. end end @connected = false true end |
#handle_auth_failure! ⇒ Object
Handle authentication failure.
448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
# File 'lib/mongo/server.rb', line 448 def handle_auth_failure! yield rescue Mongo::Error::SocketTimeoutError # possibly cluster is slow, do not give up on it raise rescue Mongo::Error::SocketError # non-timeout network error unknown! raise rescue Auth::Unauthorized # auth error, keep server description and topology as they are pool.disconnect! raise end |
#handle_handshake_failure! ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Handle handshake failure.
429 430 431 432 433 434 |
# File 'lib/mongo/server.rb', line 429 def handle_handshake_failure! yield rescue Mongo::Error::SocketError, Mongo::Error::SocketTimeoutError unknown! raise end |
#heartbeat_frequency ⇒ Object Also known as: heartbeat_frequency_seconds
117 118 119 |
# File 'lib/mongo/server.rb', line 117 def heartbeat_frequency cluster.heartbeat_interval end |
#inspect ⇒ String
Get a pretty printed server inspection.
310 311 312 |
# File 'lib/mongo/server.rb', line 310 def inspect "#<Mongo::Server:0x#{object_id} address=#{address.host}:#{address.port}>" end |
#last_scan ⇒ Time | nil
Returns last_scan The time when the last server scan completed, or nil if the server has not been scanned yet.
108 109 110 111 112 113 114 |
# File 'lib/mongo/server.rb', line 108 def last_scan if description && !description.config.empty? description.last_update_time else @last_scan end end |
#matches_tag_set?(tag_set) ⇒ true, false
Determine if the provided tags are a subset of the server’s tags.
389 390 391 392 393 |
# File 'lib/mongo/server.rb', line 389 def matches_tag_set?(tag_set) tag_set.keys.all? do |k| [k] && [k] == tag_set[k] end end |
#next_connection_id ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
518 519 520 |
# File 'lib/mongo/server.rb', line 518 def next_connection_id @connection_id_gen.next_id end |
#pool ⇒ Mongo::Server::ConnectionPool
Get the connection pool for this server.
373 374 375 376 377 |
# File 'lib/mongo/server.rb', line 373 def pool @pool_lock.synchronize do @pool ||= ConnectionPool.new(self, ) end end |
#reconnect! ⇒ true
Restart the server monitor.
403 404 405 406 407 408 |
# File 'lib/mongo/server.rb', line 403 def reconnect! if [:monitoring_io] != false monitor.restart! end @connected = true end |
#retry_reads? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Whether the server supports modern read retries.
466 467 468 |
# File 'lib/mongo/server.rb', line 466 def retry_reads? !!(features.sessions_enabled? && logical_session_timeout) end |
#retry_writes? ⇒ true, false
Retryable writes are only available on server versions 3.6+ and with sharded clusters or replica sets.
Will writes sent to this server be retried.
481 482 483 |
# File 'lib/mongo/server.rb', line 481 def retry_writes? !!(features.sessions_enabled? && logical_session_timeout && !standalone?) end |
#start_monitoring ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Start monitoring the server.
Used internally by the driver to add a server to a cluster while delaying monitoring until the server is in the cluster.
291 292 293 294 295 296 297 298 299 300 |
# File 'lib/mongo/server.rb', line 291 def start_monitoring publish_sdam_event( Monitoring::SERVER_OPENING, Monitoring::Event::ServerOpening.new(address, cluster.topology) ) if [:monitoring_io] != false ObjectSpace.define_finalizer(self, self.class.finalize(monitor)) monitor.run! end end |
#status ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns String representing server status (e.g. PRIMARY).
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/mongo/server.rb', line 317 def status case when primary? 'PRIMARY' when secondary? 'SECONDARY' when standalone? 'STANDALONE' when arbiter? 'ARBITER' when ghost? 'GHOST' when other? 'OTHER' when mongos? 'MONGOS' when unknown? 'UNKNOWN' else # Since the summary method is often used for debugging, do not raise # an exception in case none of the expected types matched nil end end |
#summary ⇒ Object
This method is experimental and subject to change.
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'lib/mongo/server.rb', line 346 def summary status = self.status || '' if replica_set_name status += " replica_set=#{replica_set_name}" end if @pool status += " pool=#{@pool.summary}" end address_bit = if address "#{address.host}:#{address.port}" else 'nil' end "#<Server address=#{address_bit} #{status}>" end |
#unknown!(options = {}) ⇒ Object
Marks server unknown and publishes the associated SDAM event (server description changed).
497 498 499 500 501 |
# File 'lib/mongo/server.rb', line 497 def unknown!( = {}) # SDAM flow will update description on the server without in-place # mutations and invoke SDAM transitions as needed. cluster.run_sdam_flow(description, Description.new(address), ) end |
#update_description(description) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
504 505 506 |
# File 'lib/mongo/server.rb', line 504 def update_description(description) @description = description end |
#update_last_scan ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
523 524 525 |
# File 'lib/mongo/server.rb', line 523 def update_last_scan @last_scan = Time.now end |
#with_connection(&block) ⇒ Object
Execute a block of code with a connection, that is checked out of the server’s pool and then checked back in.
421 422 423 |
# File 'lib/mongo/server.rb', line 421 def with_connection(&block) pool.with_connection(&block) end |