123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Cluster::Topology::Single

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base, Forwardable
Instance Chain:
Inherits: Mongo::Cluster::Topology::Base
Defined in: lib/mongo/cluster/topology/single.rb

Overview

Defines behavior for when a cluster is in single topology.

Since:

  • 2.0.0

Constant Summary

::Mongo::Loggable - Included

PREFIX

Class Method Summary

Base - Inherited

.new

Initialize the topology with the options.

Instance Attribute Summary

Base - Inherited

::Mongo::Monitoring::Publishable - Included

Instance Method Summary

Base - Inherited

#addresses,
#max_election_id

The largest electionId ever reported by a primary.

#max_set_version

The largest setVersion ever reported by a primary.

#new_max_election_id, #new_max_set_version,
#replica_set_name

Get the replica set name configured for this topology.

#server_hosts_match_any?

Compares each server address against the list of patterns.

#validate_options

Validates and/or transforms options as necessary for the topology.

::Mongo::Monitoring::Publishable - Included

::Mongo::Loggable - Included

#log_debug

Convenience method to log debug messages with the standard prefix.

#log_error

Convenience method to log error messages with the standard prefix.

#log_fatal

Convenience method to log fatal messages with the standard prefix.

#log_info

Convenience method to log info messages with the standard prefix.

#log_warn

Convenience method to log warn messages with the standard prefix.

#logger

Get the logger instance.

#_mongo_log_prefix, #format_message

Instance Attribute Details

#replica_set?false (readonly)

A single topology is not a replica set.

Examples:

Is the topology a replica set?

Single.replica_set?

Returns:

  • (false)

    Always false.

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 89

def replica_set?; false; end

#sharded?false (readonly)

A single topology is not sharded.

Examples:

Is the topology sharded?

Single.sharded?

Returns:

  • (false)

    Always false.

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 113

def sharded?; false; end

#single?true (readonly)

A single topology is single.

Examples:

Is the topology single?

Single.single?

Returns:

  • (true)

    Always true.

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 123

def single?; true; end

#unknown?false (readonly)

An single topology is not unknown.

Examples:

Is the topology unknown?

Single.unknown?

Returns:

  • (false)

    Always false.

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 133

def unknown?; false; end

Instance Method Details

#display_nameString

Get the display name.

Examples:

Get the display name.

Single.display_name

Returns:

  • (String)

    The display name.

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 40

def display_name
  self.class.name.gsub(/.*::/, '')
end

#has_readable_server?(cluster, server_selector = nil) ⇒ true

Determine if the topology would select a readable server for the provided candidates and read preference.

Examples:

Is a readable server present?

topology.has_readable_server?(cluster, server_selector)

Parameters:

  • cluster (Cluster)

    The cluster.

  • server_selector (ServerSelector) (defaults to: nil)

    The server selector.

Returns:

  • (true)

    A standalone always has a readable server.

Since:

  • 2.4.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 66

def has_readable_server?(cluster, server_selector = nil); true; end

#has_writable_server?(cluster) ⇒ true

Determine if the topology would select a writable server for the provided candidates.

Examples:

Is a writable server present?

topology.has_writable_server?(servers)

Parameters:

  • cluster (Cluster)

    The cluster.

Returns:

  • (true)

    A standalone always has a writable server.

Since:

  • 2.4.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 79

def has_writable_server?(cluster); true; end

#servers(servers, name = nil) ⇒ Array<Server>

Select appropriate servers for this topology.

Examples:

Select the servers.

Single.servers(servers, 'test')

Parameters:

  • servers (Array<Server>)

    The known servers.

Returns:

  • (Array<Server>)

    The single servers.

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 101

def servers(servers, name = nil)
  servers.reject { |server| server.unknown? }
end

#summary

Note:

This method is experimental and subject to change.

Since:

  • 2.7.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 48

def summary
  details = server_descriptions.keys.join(',')
  "#{display_name}[#{details}]"
end

#validate_options(options, cluster) (private)

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/cluster/topology/single.rb', line 137

def validate_options(options, cluster)
  if cluster.servers_list.length > 1
    raise ArgumentError, "Cannot instantiate a single topology with more than one server in the cluster: #{cluster.servers_list.map(&:address).map(&:seed).join(', ')}"
  end

  super(options, cluster)
end