Class: Moped::Node Private

Inherits:
Object show all
Defined in:
lib/moped/node.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.

Represents a client to a node in a server cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(address) ⇒ Node

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.

Creat the new node.

Examples:

Create the new node.

Node.new("127.0.0.1:27017")

Parameters:

  • address (String)

    The location of the server node.

Since:

  • 1.0.0



200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/moped/node.rb', line 200

def initialize(address)
  @address = address

  host, port = address.split(":")
  @ip_address = ::Socket.getaddrinfo(host, nil, ::Socket::AF_INET, ::Socket::SOCK_STREAM).first[3]
  @port = port.to_i
  @resolved_address = "#{@ip_address}:#{@port}"

  @timeout = 5
  @down_at = nil
  @refreshed_at = nil
  @primary = nil
  @secondary = nil
end

Instance Attribute Details

#addressObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def address
  @address
end

#address The address of the node.(Theaddressofthenode.) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

#down_atObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def down_at
  @down_at
end

#down_at The time the server node went down.(Thetimetheservernodewentdown.) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

#ip_addressObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def ip_address
  @ip_address
end

#ip_address The node's ip.(Thenode's ip.) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

#peersObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def peers
  @peers
end

#peers Other peers in the replica set.(Otherpeers) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

#portObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def port
  @port
end

#port The connection port.(Theconnectionport.) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

#resolved_addressObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def resolved_address
  @resolved_address
end

#resolved_address The host/port pair.(Thehost/portpair.) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

#timeoutObject (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.



15
16
17
# File 'lib/moped/node.rb', line 15

def timeout
  @timeout
end

#timeout The connection timeout.(Theconnectiontimeout.) ⇒ Object (readonly)



15
# File 'lib/moped/node.rb', line 15

attr_reader :address, :down_at, :ip_address, :peers, :port, :resolved_address, :timeout

Instance Method Details

#==(other) ⇒ true, false Also known as: eql?

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.

Is this node equal to another?

Examples:

Is the node equal to another.

node == other

Parameters:

  • other (Node)

    The other node.

Returns:

  • (true, false)

    If the addresses are equal.

Since:

  • 1.0.0



27
28
29
# File 'lib/moped/node.rb', line 27

def ==(other)
  resolved_address == other.resolved_address
end

#apply_auth(credentials) ⇒ Node

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.

Apply the authentication details to this node.

Examples:

Apply authentication.

node.apply_auth([ :db, "user", "pass" ])

Parameters:

  • credentials (Array<String>)

    The db, username, and password.

Returns:

  • (Node)

    The authenticated node.

Since:

  • 1.0.0



42
43
44
45
46
47
48
49
50
51
# File 'lib/moped/node.rb', line 42

def apply_auth(credentials)
  unless auth == credentials
    logouts = auth.keys - credentials.keys
    logouts.each { |database| logout(database) }
    credentials.each do |database, (username, password)|
      (database, username, password) unless auth[database] == [username, password]
    end
  end
  self
end

#arbiter?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.

Is the node an arbiter?

Examples:

Is the node an arbiter?

node.arbiter?

Returns:

  • (true, false)

    If the node is an arbiter.

Since:

  • 1.0.0



299
300
301
# File 'lib/moped/node.rb', line 299

def arbiter?
  @arbiter
end

#command(database, cmd, options = {}) ⇒ Hash

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.

Execute a command against a database.

Examples:

Execute a command.

node.command(database, { ping: 1 })

Parameters:

  • database (Database)

    The database to run the command on.

  • cmd (Hash)

    The command to execute.

Returns:

  • (Hash)

    The result of the command.

Raises:

  • (OperationFailure)

    If the command failed.

Since:

  • 1.0.0



67
68
69
70
71
72
73
74
75
76
77
# File 'lib/moped/node.rb', line 67

def command(database, cmd, options = {})
  operation = Protocol::Command.new(database, cmd, options)

  process(operation) do |reply|
    result = reply.documents[0]
    raise Errors::OperationFailure.new(
      operation, result
    ) if result["ok"] != 1 || result["err"] || result["errmsg"]
    result
  end
end

#down?Time?

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.

Is the node down?

Examples:

Is the node down?

node.down?

Returns:

  • (Time, nil)

    The time the node went down, or nil if up.

Since:

  • 1.0.0



87
88
89
# File 'lib/moped/node.rb', line 87

def down?
  @down_at
end

#ensure_connectednil

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.

Yields the block if a connection can be established, retrying when a connection error is raised.

Examples:

Ensure we are connection.

node.ensure_connected do
  #...
end

Returns:

  • (nil)

    nil.

Since:

  • 1.0.0



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
# File 'lib/moped/node.rb', line 104

def ensure_connected
  # Don't run the reconnection login if we're already inside an
  # +ensure_connected+ block.
  return yield if Threaded.executing?(:connection)
  Threaded.begin(:connection)
  retry_on_failure = true

  begin
    connect unless connected?
    yield
  rescue Errors::ReplicaSetReconfigured
    # Someone else wrapped this in an #ensure_primary block, so let the
    # reconfiguration exception bubble up.
    raise
  rescue Errors::OperationFailure, Errors::AuthenticationFailure, Errors::QueryFailure
    # These exceptions are "expected" in the normal course of events, and
    # don't necessitate disconnecting.
    raise
  rescue Errors::ConnectionFailure
    disconnect

    if retry_on_failure
      # Maybe there was a hiccup -- try reconnecting one more time
      retry_on_failure = false
      retry
    else
      # Nope, we failed to connect twice. Flag the node as down and re-raise
      # the exception.
      down!
      raise
    end
  rescue
    # Looks like we got an unexpected error, so we'll clean up the connection
    # and re-raise the exception.
    disconnect
    raise $!.extend(Errors::SocketError)
  end
ensure
  Threaded.end(:connection)
end

#ensure_primarynil

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.

Set a flag on the node for the duration of provided block so that an exception is raised if the node is no longer the primary node.

Examples:

Ensure this node is primary.

node.ensure_primary do
  #...
end

Returns:

  • (nil)

    nil.

Since:

  • 1.0.0



156
157
158
159
160
161
# File 'lib/moped/node.rb', line 156

def ensure_primary
  Threaded.begin(:ensure_primary)
  yield
ensure
  Threaded.end(:ensure_primary)
end

#get_more(database, collection, cursor_id, limit) ⇒ Message

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.

Execute a get more operation on the node.

Examples:

Execute a get more.

node.get_more(database, collection, 12345, -1)

Parameters:

  • database (Database)

    The database to get more from.

  • collection (Collection)

    The collection to get more from.

  • cursor_id (Integer)

    The id of the cursor on the server.

  • limit (Integer)

    The number of documents to limit.

Returns:

  • (Message)

    The result of the operation.

Since:

  • 1.0.0



176
177
178
# File 'lib/moped/node.rb', line 176

def get_more(database, collection, cursor_id, limit)
  process(Protocol::GetMore.new(database, collection, cursor_id, limit))
end

#hashInteger

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.

Get the hash identifier for the node.

Examples:

Get the hash identifier.

node.hash

Returns:

  • (Integer)

    The hash identifier.

Since:

  • 1.0.0



188
189
190
# File 'lib/moped/node.rb', line 188

def hash
  resolved_address.hash
end

#insert(database, collection, documents) ⇒ Message

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.

Insert documents into the database.

Examples:

Insert documents.

node.insert(database, collection, [{ name: "Tool" }])

Parameters:

  • database (Database)

    The database to insert to.

  • collection (Collection)

    The collection to insert to.

  • documents (Array<Hash>)

    The documents to insert.

Returns:

  • (Message)

    The result of the operation.

Since:

  • 1.0.0



227
228
229
# File 'lib/moped/node.rb', line 227

def insert(database, collection, documents)
  process(Protocol::Insert.new(database, collection, documents))
end

#inspectObject

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.



425
426
427
# File 'lib/moped/node.rb', line 425

def inspect
  "<#{self.class.name} resolved_address=#{@resolved_address.inspect}>"
end

#kill_cursors(cursor_ids) ⇒ Message

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.

Kill all provided cursors on the node.

Examples:

Kill all the provided cursors.

node.kill_cursors([ 12345 ])

Parameters:

Returns:

  • (Message)

    The result of the operation.

Since:

  • 1.0.0



241
242
243
# File 'lib/moped/node.rb', line 241

def kill_cursors(cursor_ids)
  process(Protocol::KillCursors.new(cursor_ids))
end

#needs_refresh?(time) ⇒ 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.

Does the node need to be refreshed?

Examples:

Does the node require refreshing?

node.needs_refresh?(time)

Parameters:

  • time (Time)

    The next referesh time.

Returns:

  • (true, false)

    Whether the node needs to be refreshed.

Since:

  • 1.0.0



255
256
257
# File 'lib/moped/node.rb', line 255

def needs_refresh?(time)
  !@refreshed_at || @refreshed_at < time
end

#passive?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.

Is the node passive?

Examples:

Is the node passive?

node.passive?

Returns:

  • (true, false)

    If the node is passive.

Since:

  • 1.0.0



311
312
313
# File 'lib/moped/node.rb', line 311

def passive?
  @passive
end

#pipelinenil

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.

Execute a pipeline of commands, for example a safe mode persist.

Examples:

Execute a pipeline.

node.pipeline do
  #...
end

Returns:

  • (nil)

    nil.

Since:

  • 1.0.0



269
270
271
272
273
274
275
276
277
# File 'lib/moped/node.rb', line 269

def pipeline
  Threaded.begin(:pipeline)
  begin
    yield
  ensure
    Threaded.end(:pipeline)
  end
  flush unless Threaded.executing?(:pipeline)
end

#primary?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.

Is the node the replica set primary?

Examples:

Is the node the primary?

node.primary?

Returns:

  • (true, false)

    If the node is the primary.

Since:

  • 1.0.0



287
288
289
# File 'lib/moped/node.rb', line 287

def primary?
  @primary
end

#query(database, collection, selector, options = {}) ⇒ Message

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.

Execute a query on the node.

Examples:

Execute a query.

node.query(database, collection, { name: "Tool" })

Parameters:

  • database (Database)

    The database to query from.

  • collection (Collection)

    The collection to query from.

  • selector (Hash)

    The query selector.

  • options (Hash) (defaults to: {})

    The query options.

Returns:

  • (Message)

    The result of the operation.

Raises:

  • (QueryFailure)

    If the query had an error.

Since:

  • 1.0.0



330
331
332
333
334
335
336
337
338
339
# File 'lib/moped/node.rb', line 330

def query(database, collection, selector, options = {})
  operation = Protocol::Query.new(database, collection, selector, options)

  process operation do |reply|
    if reply.flags.include?(:query_failure)
      raise Errors::QueryFailure.new(operation, reply.documents.first)
    end
    reply
  end
end

#refreshnil

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 nil.

Returns:

  • (nil)

    nil.

Raises:

  • (ReplicaSetReconfigured)

    If the node is no longer a primary node and refresh was called within an #ensure_primary block.

Since:

  • 1.0.0



355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
# File 'lib/moped/node.rb', line 355

def refresh
  info = command("admin", ismaster: 1)

  @refreshed_at = Time.now
  primary = true if info["ismaster"]
  secondary = true if info["secondary"]

  peers = []
  peers.push(info["primary"]) if info["primary"]
  peers.concat(info["hosts"]) if info["hosts"]
  peers.concat(info["passives"]) if info["passives"]
  peers.concat(info["arbiters"]) if info["arbiters"]

  @peers = peers.map { |peer| Node.new(peer) }
  @primary, @secondary = primary, secondary
  @arbiter = info["arbiterOnly"]
  @passive = info["passive"]

  if !primary && Threaded.executing?(:ensure_primary)
    raise Errors::ReplicaSetReconfigured, "#{inspect} is no longer the primary node."
  end
end

#remove(database, collection, selector, options = {}) ⇒ Message

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.

Execute a remove command for the provided selector.

Examples:

Remove documents.

node.remove(database, collection, { name: "Tool" })

Parameters:

  • database (Database)

    The database to remove from.

  • collection (Collection)

    The collection to remove from.

  • selector (Hash)

    The query selector.

  • options (Hash) (defaults to: {})

    The remove options.

Returns:

  • (Message)

    The result of the operation.

Since:

  • 1.0.0



391
392
393
# File 'lib/moped/node.rb', line 391

def remove(database, collection, selector, options = {})
  process(Protocol::Delete.new(database, collection, selector, options))
end

#secondary?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.

Is the node a replica set secondary?

Examples:

Is the node a secondary?

node.secondary?

Returns:

  • (true, false)

    If the node is a secondary.

Since:

  • 1.0.0



403
404
405
# File 'lib/moped/node.rb', line 403

def secondary?
  @secondary
end

#update(database, collection, selector, change, options = {}) ⇒ Message

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.

Execute an update command for the provided selector.

Examples:

Update documents.

node.update(database, collection, { name: "Tool" }, { likes: 1000 })

Parameters:

  • database (Database)

    The database to update.

  • collection (Collection)

    The collection to update.

  • selector (Hash)

    The query selector.

  • change (Hash)

    The updates.

  • options (Hash) (defaults to: {})

    The update options.

Returns:

  • (Message)

    The result of the operation.

Since:

  • 1.0.0



421
422
423
# File 'lib/moped/node.rb', line 421

def update(database, collection, selector, change, options = {})
  process(Protocol::Update.new(database, collection, selector, change, options))
end