Class: Mongo::Cluster::SdamFlow Private
- Inherits:
-
Object
- Object
- Mongo::Cluster::SdamFlow
- Extended by:
- Forwardable
- Defined in:
- lib/mongo/cluster/sdam_flow.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Handles SDAM flow for a server description changed event.
Updates server descriptions, topology descriptions and publishes SDAM events.
SdamFlow is meant to be instantiated once for every server description changed event that needs to be processed.
Instance Attribute Summary collapse
- #cluster ⇒ Object readonly private
- #original_desc ⇒ Object readonly private
- #previous_desc ⇒ Object readonly private
-
#topology ⇒ Object
readonly
private
The topology stored in this attribute can change multiple times throughout a single sdam flow (e.g. unknown -> RS no primary -> RS with primary).
- #updated_desc ⇒ Object readonly private
Instance Method Summary collapse
-
#add_servers_from_desc(updated_desc) ⇒ Array<Server>
private
Adds all servers referenced in the given description (which is supposed to have come from a good primary) which are not already in the cluster, to the cluster.
- #awaited? ⇒ Boolean private
-
#became_unknown? ⇒ Boolean
private
Returns whether the server whose description this flow processed was not previously unknown, and is now.
-
#check_if_has_primary ⇒ Object
private
Checks if the cluster has a primary, and if not, transitions the topology to ReplicaSetNoPrimary.
-
#commit_changes ⇒ Object
private
Publishes server description changed events, updates topology on the cluster and publishes topology changed event, as needed based on operations performed during SDAM flow processing.
- #disconnect_servers ⇒ Object private
-
#do_remove(address_str) ⇒ Object
private
Removes specified server from topology and warns if the topology ends up with an empty server list as a result.
-
#initialize(cluster, previous_desc, updated_desc, awaited: false) ⇒ SdamFlow
constructor
private
A new instance of SdamFlow.
- #publish_description_change_event ⇒ Object private
-
#remove ⇒ Object
private
Removes the server whose description we are processing from the topology.
-
#remove_servers_not_in_desc(updated_desc) ⇒ Object
private
Removes servers from the topology which are not present in the given server description (which is supposed to have come from a good primary).
- #server_description_changed ⇒ Object private
-
#stale_primary? ⇒ Boolean
private
Whether updated_desc is for a stale primary.
-
#start_pool_if_data_bearing ⇒ Object
private
If the server being processed is identified as data bearing, creates the server’s connection pool so it can start populating.
-
#topology_effectively_changed? ⇒ Boolean
private
Returns whether topology meaningfully changed as a result of running SDAM flow.
-
#update_rs_from_primary ⇒ Object
private
Updates topology which must be a ReplicaSetWithPrimary with information from the primary’s server description.
-
#update_rs_with_primary_from_member ⇒ Object
private
Updates a ReplicaSetWithPrimary topology from a non-primary member.
-
#update_rs_without_primary ⇒ Object
private
Updates a ReplicaSetNoPrimary topology from a non-primary member.
-
#update_server_descriptions ⇒ Object
private
Updates descriptions on all servers whose address matches updated_desc’s address.
-
#update_unknown_with_standalone ⇒ Object
private
Transitions from unknown to single topology type, when a standalone server is discovered.
- #verify_invariants ⇒ Object private
Constructor Details
#initialize(cluster, previous_desc, updated_desc, awaited: false) ⇒ SdamFlow
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 a new instance of SdamFlow.
31 32 33 34 35 36 37 38 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 31 def initialize(cluster, previous_desc, updated_desc, awaited: false) @cluster = cluster @topology = cluster.topology @original_desc = @previous_desc = previous_desc @updated_desc = updated_desc @servers_to_disconnect = [] @awaited = !!awaited end |
Instance Attribute Details
#cluster ⇒ Object (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.
40 41 42 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 40 def cluster @cluster end |
#original_desc ⇒ Object (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.
56 57 58 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 56 def original_desc @original_desc end |
#previous_desc ⇒ Object (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.
54 55 56 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 54 def previous_desc @previous_desc end |
#topology ⇒ Object (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.
The topology stored in this attribute can change multiple times throughout a single sdam flow (e.g. unknown -> RS no primary -> RS with primary). Events for topology change get sent at the end of flow processing, such that the above example only publishes an unknown -> RS with primary event to the application.
52 53 54 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 52 def topology @topology end |
#updated_desc ⇒ Object (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.
55 56 57 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 55 def updated_desc @updated_desc end |
Instance Method Details
#add_servers_from_desc(updated_desc) ⇒ Array<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.
Servers are added unmonitored. Monitoring must be started later
Adds all servers referenced in the given description (which is supposed to have come from a good primary) which are not already in the cluster, to the cluster.
separately.
387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 387 def add_servers_from_desc(updated_desc) added_servers = [] %w(hosts passives arbiters).each do |m| updated_desc.send(m).each do |address_str| if server = cluster.add(address_str, monitor: false) added_servers << server end end end verify_invariants added_servers end |
#awaited? ⇒ 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.
58 59 60 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 58 def awaited? @awaited end |
#became_unknown? ⇒ 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.
Returns whether the server whose description this flow processed was not previously unknown, and is now. Used to decide, in particular, whether to clear the server’s connection pool.
631 632 633 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 631 def became_unknown? updated_desc.unknown? && !original_desc.unknown? end |
#check_if_has_primary ⇒ 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.
Checks if the cluster has a primary, and if not, transitions the topology to ReplicaSetNoPrimary. Topology must be ReplicaSetWithPrimary when invoking this method.
583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 583 def check_if_has_primary unless topology.replica_set? raise ArgumentError, "check_if_has_primary should only be called when topology is replica set, but it is #{topology.class.name.sub(/.*::/, '')}" end primary = servers_list.detect do |server| # A primary with the wrong set name is not a primary server.primary? && server.description.replica_set_name == topology.replica_set_name end unless primary @topology = Topology::ReplicaSetNoPrimary.new( topology., topology.monitoring, self) end end |
#commit_changes ⇒ 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.
Publishes server description changed events, updates topology on the cluster and publishes topology changed event, as needed based on operations performed during SDAM flow processing.
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 549 550 551 552 553 554 555 556 557 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 507 def commit_changes # The application-visible sequence of events should be as follows: # # 1. Description change for the server which we are processing; # 2. Topology change, if any; # 3. Description changes for other servers, if any. # # The tricky part here is that the server description changes are # not all processed together. publish_description_change_event start_pool_if_data_bearing topology_changed_event_published = false if !topology.equal?(cluster.topology) || @need_topology_changed_event # We are about to publish topology changed event. # Recreate the topology instance to get its server descriptions # up to date. @topology = topology.class.new(topology., topology.monitoring, cluster) # This sends the SDAM event cluster.update_topology(topology) topology_changed_event_published = true @need_topology_changed_event = false end # If a server description changed, topology description change event # must be published with the previous and next topologies being of # the same type, unless we already published topology change event if topology_changed_event_published return end if updated_desc.unknown? && previous_desc.unknown? return end if updated_desc.object_id == previous_desc.object_id return end unless topology_effectively_changed? return end # If we are here, there has been a change in the server descriptions # in our topology, but topology class has not changed. # Publish the topology changed event and recreate the topology to # get the new list of server descriptions into it. @topology = topology.class.new(topology., topology.monitoring, cluster) # This sends the SDAM event cluster.update_topology(topology) end |
#disconnect_servers ⇒ 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.
559 560 561 562 563 564 565 566 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 559 def disconnect_servers while server = @servers_to_disconnect.shift if server.connected? # Do not publish server closed event, as this was already done server.disconnect! end end end |
#do_remove(address_str) ⇒ 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.
Removes specified server from topology and warns if the topology ends up with an empty server list as a result
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 434 def do_remove(address_str) servers = cluster.remove(address_str, disconnect: false) servers.each do |server| # Clear the description so that the server is marked as unknown. server.clear_description # We need to publish server closed event here, but we cannot close # the server because it could be the server owning the monitor in # whose thread this flow is presently executing, in which case closing # the server can terminate the thread and leave SDAM processing # incomplete. Thus we have to remove the server from the cluster, # publish the event, but do not call disconnect on the server until # the very end when all processing has completed. publish_sdam_event( Mongo::Monitoring::SERVER_CLOSED, Mongo::Monitoring::Event::ServerClosed.new(server.address, cluster.topology) ) end @servers_to_disconnect += servers if servers_list.empty? log_warn( "Topology now has no servers - this is likely a misconfiguration of the cluster and/or the application" ) end end |
#publish_description_change_event ⇒ 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.
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 460 def publish_description_change_event # This method may be invoked when server description definitely changed # but prior to the topology getting updated. Therefore we check both # server description changes and overall topology changes. When this # method is called at the end of SDAM flow as part of "commit changes" # step, server description change is incorporated into the topology # change. unless @server_description_changed || topology_effectively_changed? return end # updated_desc here may not be the description we received from # the server - in case of a stale primary, the server reported itself # as being a primary but updated_desc here will be unknown. # We used to not notify on Unknown -> Unknown server changes. # Technically these are valid state changes (or at least as valid as # other server description changes when the description has not # changed meaningfully but the events are still published). # The current version of the driver notifies on Unknown -> Unknown # transitions. # Avoid dispatching events when updated description is the same as # previous description. This allows this method to be called multiple # times in the flow when the events should be published, without # worrying about whether there are any unpublished changes. if updated_desc.object_id == previous_desc.object_id return end publish_sdam_event( ::Mongo::Monitoring::SERVER_DESCRIPTION_CHANGED, ::Mongo::Monitoring::Event::ServerDescriptionChanged.new( updated_desc.address, topology, previous_desc, updated_desc, awaited: awaited?, ) ) @previous_desc = updated_desc @need_topology_changed_event = true end |
#remove ⇒ 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.
Removes the server whose description we are processing from the topology.
427 428 429 430 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 427 def remove publish_description_change_event do_remove(updated_desc.address.to_s) end |
#remove_servers_not_in_desc(updated_desc) ⇒ 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.
Removes servers from the topology which are not present in the given server description (which is supposed to have come from a good primary).
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 405 def remove_servers_not_in_desc(updated_desc) updated_desc_address_strs = %w(hosts passives arbiters).map do |m| updated_desc.send(m) end.flatten servers_list.each do |server| unless updated_desc_address_strs.include?(address_str = server.address.to_s) updated_host = updated_desc.address.to_s if updated_desc.me && updated_desc.me != updated_host updated_host += " (self-identified as #{updated_desc.me})" end log_warn( "Removing server #{address_str} because it is not in hosts reported by primary " + "#{updated_host}. Reported hosts are: " + updated_desc.hosts.join(', ') ) do_remove(address_str) end end end |
#server_description_changed ⇒ 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.
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 93 def server_description_changed @previous_server_descriptions = servers_list.map do |server| [server.address.to_s, server.description] end unless update_server_descriptions # All of the transitions require that server whose updated_desc we are # processing is still in the cluster (i.e., was not removed as a result # of processing another response, potentially concurrently). # If update_server_descriptions returned false we have no servers # in the topology for the description we are processing, stop. return end case topology when Topology::LoadBalanced @updated_desc = ::Mongo::Server::Description::LoadBalancer.new( updated_desc.address, ) update_server_descriptions when Topology::Single if topology.replica_set_name if updated_desc.replica_set_name != topology.replica_set_name log_warn( "Server #{updated_desc.address.to_s} has an incorrect replica set name '#{updated_desc.replica_set_name}'; expected '#{topology.replica_set_name}'" ) @updated_desc = ::Mongo::Server::Description.new( updated_desc.address, {}, average_round_trip_time: updated_desc.average_round_trip_time, minimum_round_trip_time: updated_desc.minimum_round_trip_time ) update_server_descriptions end end when Topology::Unknown if updated_desc.standalone? update_unknown_with_standalone elsif updated_desc.mongos? @topology = Topology::Sharded.new(topology., topology.monitoring, self) elsif updated_desc.primary? @topology = Topology::ReplicaSetWithPrimary.new( topology..merge(replica_set_name: updated_desc.replica_set_name), topology.monitoring, self) update_rs_from_primary elsif updated_desc.secondary? || updated_desc.arbiter? || updated_desc.other? @topology = Topology::ReplicaSetNoPrimary.new( topology..merge(replica_set_name: updated_desc.replica_set_name), topology.monitoring, self) update_rs_without_primary end when Topology::Sharded unless updated_desc.unknown? || updated_desc.mongos? log_warn( "Removing server #{updated_desc.address.to_s} because it is of the wrong type (#{updated_desc.server_type.to_s.upcase}) - expected SHARDED" ) remove end when Topology::ReplicaSetWithPrimary if updated_desc.standalone? || updated_desc.mongos? log_warn( "Removing server #{updated_desc.address.to_s} because it is of the wrong type (#{updated_desc.server_type.to_s.upcase}) - expected a replica set member" ) remove check_if_has_primary elsif updated_desc.primary? update_rs_from_primary elsif updated_desc.secondary? || updated_desc.arbiter? || updated_desc.other? update_rs_with_primary_from_member else check_if_has_primary end when Topology::ReplicaSetNoPrimary if updated_desc.standalone? || updated_desc.mongos? log_warn( "Removing server #{updated_desc.address.to_s} because it is of the wrong type (#{updated_desc.server_type.to_s.upcase}) - expected a replica set member" ) remove elsif updated_desc.primary? # Here we change topology type to RS with primary, however # while processing updated_desc we may find that its RS name # does not match our existing RS name. For this reason # is is imperative to NOT pass updated_desc's RS name to # topology constructor here. # During processing we may remove the server whose updated_desc # we are be processing (e.g. the RS name mismatch case again), # in which case topoogy type will go back to RS without primary # in the check_if_has_primary step. @topology = Topology::ReplicaSetWithPrimary.new( # Do not pass updated_desc's RS name here topology., topology.monitoring, self) update_rs_from_primary elsif updated_desc.secondary? || updated_desc.arbiter? || updated_desc.other? update_rs_without_primary end else raise ArgumentError, "Unknown topology #{topology.class}" end verify_invariants commit_changes disconnect_servers end |
#stale_primary? ⇒ 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 updated_desc is for a stale primary.
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 599 def stale_primary? if updated_desc.max_wire_version >= 17 if updated_desc.election_id.nil? && !topology.max_election_id.nil? return true end if updated_desc.election_id && topology.max_election_id && updated_desc.election_id < topology.max_election_id return true end if updated_desc.election_id == topology.max_election_id if updated_desc.set_version.nil? && !topology.max_set_version.nil? return true end if updated_desc.set_version && topology.max_set_version && updated_desc.set_version < topology.max_set_version return true end end else if updated_desc.election_id && updated_desc.set_version if topology.max_set_version && topology.max_election_id && (updated_desc.set_version < topology.max_set_version || (updated_desc.set_version == topology.max_set_version && updated_desc.election_id < topology.max_election_id)) return true end end end false end |
#start_pool_if_data_bearing ⇒ 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.
If the server being processed is identified as data bearing, creates the server’s connection pool so it can start populating
570 571 572 573 574 575 576 577 578 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 570 def start_pool_if_data_bearing return if !updated_desc.data_bearing? servers_list.each do |server| if server.address == @updated_desc.address server.pool end end end |
#topology_effectively_changed? ⇒ 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.
Returns whether topology meaningfully changed as a result of running SDAM flow.
The spec defines topology equality through equality of topology types and server descriptions in each topology; this definition is not usable by us because our topology objects do not hold server descriptions and are instead “live”. Thus we have to store the full list of server descriptions at the beginning of SDAM flow and compare them to the current ones.
644 645 646 647 648 649 650 651 652 653 654 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 644 def topology_effectively_changed? unless topology.equal?(cluster.topology) return true end server_descriptions = servers_list.map do |server| [server.address.to_s, server.description] end @previous_server_descriptions != server_descriptions end |
#update_rs_from_primary ⇒ 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.
Updates topology which must be a ReplicaSetWithPrimary with information from the primary’s server description.
This method does not change topology type to ReplicaSetWithPrimary - this needs to have been done prior to calling this method.
If the primary whose description is being processed is determined to be stale, this method will change the server description and topology type to unknown.
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 221 def update_rs_from_primary if topology.replica_set_name.nil? @topology = Topology::ReplicaSetWithPrimary.new( topology..merge(replica_set_name: updated_desc.replica_set_name), topology.monitoring, self) end if topology.replica_set_name != updated_desc.replica_set_name log_warn( "Removing server #{updated_desc.address.to_s} because it has an " + "incorrect replica set name '#{updated_desc.replica_set_name}'; " + "expected '#{topology.replica_set_name}'" ) remove check_if_has_primary return end if stale_primary? @updated_desc = ::Mongo::Server::Description.new( updated_desc.address, {}, average_round_trip_time: updated_desc.average_round_trip_time, minimum_round_trip_time: updated_desc.minimum_round_trip_time ) update_server_descriptions check_if_has_primary return end if updated_desc.max_wire_version >= 17 @topology = Topology::ReplicaSetWithPrimary.new( topology..merge( max_election_id: updated_desc.election_id, max_set_version: updated_desc.set_version ), topology.monitoring, self) else max_election_id = topology.new_max_election_id(updated_desc) max_set_version = topology.new_max_set_version(updated_desc) if max_election_id != topology.max_election_id || max_set_version != topology.max_set_version then @topology = Topology::ReplicaSetWithPrimary.new( topology..merge( max_election_id: max_election_id, max_set_version: max_set_version ), topology.monitoring, self) end end # At this point we have accepted the updated server description # and the topology (both are primary). Commit these changes so that # their respective SDAM events are published before SDAM events for # server additions/removals that follow publish_description_change_event servers_list.each do |server| if server.address != updated_desc.address if server.primary? server.update_description( ::Mongo::Server::Description.new( server.address, {}, average_round_trip_time: server.description.average_round_trip_time, minimum_round_trip_time: updated_desc.minimum_round_trip_time ) ) end end end servers = add_servers_from_desc(updated_desc) remove_servers_not_in_desc(updated_desc) check_if_has_primary servers.each do |server| server.start_monitoring end end |
#update_rs_with_primary_from_member ⇒ 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.
Updates a ReplicaSetWithPrimary topology from a non-primary member.
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 304 def update_rs_with_primary_from_member if topology.replica_set_name != updated_desc.replica_set_name log_warn( "Removing server #{updated_desc.address.to_s} because it has an " + "incorrect replica set name (#{updated_desc.replica_set_name}); " + "current set name is #{topology.replica_set_name}" ) remove check_if_has_primary return end if updated_desc.me_mismatch? log_warn( "Removing server #{updated_desc.address.to_s} because it " + "reported itself as #{updated_desc.me}" ) remove check_if_has_primary return end have_primary = false servers_list.each do |server| if server.primary? have_primary = true break end end unless have_primary @topology = Topology::ReplicaSetNoPrimary.new( topology., topology.monitoring, self) end end |
#update_rs_without_primary ⇒ 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.
Updates a ReplicaSetNoPrimary topology from a non-primary member.
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 341 def update_rs_without_primary if topology.replica_set_name.nil? @topology = Topology::ReplicaSetNoPrimary.new( topology..merge(replica_set_name: updated_desc.replica_set_name), topology.monitoring, self) end if topology.replica_set_name != updated_desc.replica_set_name log_warn( "Removing server #{updated_desc.address.to_s} because it has an " + "incorrect replica set name (#{updated_desc.replica_set_name}); " + "current set name is #{topology.replica_set_name}" ) remove return end publish_description_change_event servers = add_servers_from_desc(updated_desc) commit_changes servers.each do |server| server.start_monitoring end if updated_desc.me_mismatch? log_warn( "Removing server #{updated_desc.address.to_s} because it " + "reported itself as #{updated_desc.me}" ) remove return end end |
#update_server_descriptions ⇒ 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.
Updates descriptions on all servers whose address matches updated_desc’s address.
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 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 66 def update_server_descriptions servers_list.each do |server| if server.address == updated_desc.address # SDAM flow must be run when topology version in the new description # is equal to the current topology version, per the example in # https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#what-is-the-purpose-of-topologyversion unless updated_desc.topology_version_gte?(server.description) return false end @server_description_changed = server.description != updated_desc # Always update server description, so that fields that do not # affect description equality comparisons but are part of the # description are updated. server.update_description(updated_desc) server.update_last_scan # If there was no content difference between descriptions, we # still need to run sdam flow, but if the flow produces no change # in topology we will omit sending events. return true end end false end |
#update_unknown_with_standalone ⇒ 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.
Transitions from unknown to single topology type, when a standalone server is discovered.
200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 200 def update_unknown_with_standalone if seeds.length == 1 @topology = Topology::Single.new( topology., topology.monitoring, self) else log_warn( "Removing server #{updated_desc.address.to_s} because it is a standalone and we have multiple seeds (#{seeds.length})" ) remove end end |
#verify_invariants ⇒ 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.
656 657 658 659 660 661 662 663 664 |
# File 'lib/mongo/cluster/sdam_flow.rb', line 656 def verify_invariants if Mongo::Lint.enabled? if cluster.topology.single? if cluster.servers_list.length > 1 raise Mongo::Error::LintError, "Trying to create a single topology with multiple servers: #{cluster.servers_list}" end end end end |