added journal, connectTimeoutMS and socketTimeoutMS to URI options
This commit is contained in:
parent
bc872b61fd
commit
1124918502
|
@ -18,3 +18,4 @@ benchmark
|
||||||
*.log
|
*.log
|
||||||
test/load/unicorn/unicorn.rb
|
test/load/unicorn/unicorn.rb
|
||||||
test/load/thin/config.yml
|
test/load/thin/config.yml
|
||||||
|
.rvmrc
|
|
@ -38,7 +38,7 @@ module Mongo
|
||||||
|
|
||||||
attr_reader :logger, :size, :auths, :primary, :safe, :host_to_try,
|
attr_reader :logger, :size, :auths, :primary, :safe, :host_to_try,
|
||||||
:pool_size, :connect_timeout, :pool_timeout,
|
:pool_size, :connect_timeout, :pool_timeout,
|
||||||
:primary_pool, :socket_class
|
:primary_pool, :socket_class, :op_timeout
|
||||||
|
|
||||||
# Create a connection to single MongoDB instance.
|
# Create a connection to single MongoDB instance.
|
||||||
#
|
#
|
||||||
|
@ -52,7 +52,7 @@ module Mongo
|
||||||
# Connection#arbiters. This is useful if your application needs to connect manually to nodes other
|
# Connection#arbiters. This is useful if your application needs to connect manually to nodes other
|
||||||
# than the primary.
|
# than the primary.
|
||||||
#
|
#
|
||||||
# @param [String, Hash] host.
|
# @param [String, Hash] host
|
||||||
# @param [Integer] port specify a port number here if only one host is being specified.
|
# @param [Integer] port specify a port number here if only one host is being specified.
|
||||||
#
|
#
|
||||||
# @option opts [Boolean, Hash] :safe (false) Set the default safe-mode options
|
# @option opts [Boolean, Hash] :safe (false) Set the default safe-mode options
|
||||||
|
|
|
@ -332,6 +332,7 @@ module Mongo
|
||||||
# @option opts [Boolean] :fsync (false)
|
# @option opts [Boolean] :fsync (false)
|
||||||
# @option opts [Integer] :w (nil)
|
# @option opts [Integer] :w (nil)
|
||||||
# @option opts [Integer] :wtimeout (nil)
|
# @option opts [Integer] :wtimeout (nil)
|
||||||
|
# @option opts [Boolean] :j (false)
|
||||||
#
|
#
|
||||||
# @return [Hash] the entire response to getlasterror.
|
# @return [Hash] the entire response to getlasterror.
|
||||||
#
|
#
|
||||||
|
|
|
@ -23,36 +23,45 @@ module Mongo
|
||||||
MONGODB_URI_MATCHER = /(([-.\w:]+):([^@,]+)@)?((?:(?:[-.\w]+)(?::(?:[\w]+))?,?)+)(\/([-\w]+))?/
|
MONGODB_URI_MATCHER = /(([-.\w:]+):([^@,]+)@)?((?:(?:[-.\w]+)(?::(?:[\w]+))?,?)+)(\/([-\w]+))?/
|
||||||
MONGODB_URI_SPEC = "mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/database]"
|
MONGODB_URI_SPEC = "mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/database]"
|
||||||
SPEC_ATTRS = [:nodes, :auths]
|
SPEC_ATTRS = [:nodes, :auths]
|
||||||
OPT_ATTRS = [:connect, :replicaset, :slaveok, :safe, :w, :wtimeout, :fsync]
|
OPT_ATTRS = [:connect, :replicaset, :slaveok, :safe, :w, :wtimeout, :fsync, :journal, :connectTimeoutMS, :socketTimeoutMS]
|
||||||
|
|
||||||
OPT_VALID = {:connect => lambda {|arg| ['direct', 'replicaset'].include?(arg)},
|
OPT_VALID = {:connect => lambda {|arg| ['direct', 'replicaset'].include?(arg)},
|
||||||
:replicaset => lambda {|arg| arg.length > 0},
|
:replicaset => lambda {|arg| arg.length > 0},
|
||||||
:slaveok => lambda {|arg| ['true', 'false'].include?(arg)},
|
:slaveok => lambda {|arg| ['true', 'false'].include?(arg)},
|
||||||
:safe => lambda {|arg| ['true', 'false'].include?(arg)},
|
:safe => lambda {|arg| ['true', 'false'].include?(arg)},
|
||||||
:w => lambda {|arg| arg =~ /^\d+$/ },
|
:w => lambda {|arg| arg =~ /^\d+$/ },
|
||||||
:wtimeout => lambda {|arg| arg =~ /^\d+$/ },
|
:wtimeout => lambda {|arg| arg =~ /^\d+$/ },
|
||||||
:fsync => lambda {|arg| ['true', 'false'].include?(arg)}
|
:fsync => lambda {|arg| ['true', 'false'].include?(arg)},
|
||||||
|
:journal => lambda {|arg| ['true', 'false'].include?(arg)},
|
||||||
|
:connectTimeoutMS => lambda {|arg| arg =~ /^\d+$/ },
|
||||||
|
:socketTimeoutMS => lambda {|arg| arg =~ /^\d+$/ },
|
||||||
}
|
}
|
||||||
|
|
||||||
OPT_ERR = {:connect => "must be 'direct' or 'replicaset'",
|
OPT_ERR = {:connect => "must be 'direct' or 'replicaset'",
|
||||||
:replicaset => "must be a string containing the name of the replica set to connect to",
|
:replicaset => "must be a string containing the name of the replica set to connect to",
|
||||||
:slaveok => "must be 'true' or 'false'",
|
:slaveok => "must be 'true' or 'false'",
|
||||||
:safe => "must be 'true' or 'false'",
|
:safe => "must be 'true' or 'false'",
|
||||||
:w => "must be an integer specifying number of nodes to replica to",
|
:w => "must be an integer specifying number of nodes to replica to",
|
||||||
:wtimeout => "must be an integer specifying milliseconds",
|
:wtimeout => "must be an integer specifying milliseconds",
|
||||||
:fsync => "must be 'true' or 'false'"
|
:fsync => "must be 'true' or 'false'",
|
||||||
|
:journal => "must be 'true' or 'false'",
|
||||||
|
:connectTimeoutMS => "must be an integer specifying milliseconds a connection can take to be opened before timing out",
|
||||||
|
:socketTimeoutMS => "must be an integer specifying milliseconds a send or receive on a socket can take before timing out",
|
||||||
}
|
}
|
||||||
|
|
||||||
OPT_CONV = {:connect => lambda {|arg| arg},
|
OPT_CONV = {:connect => lambda {|arg| arg},
|
||||||
:replicaset => lambda {|arg| arg},
|
:replicaset => lambda {|arg| arg},
|
||||||
:slaveok => lambda {|arg| arg == 'true' ? true : false},
|
:slaveok => lambda {|arg| arg == 'true' ? true : false},
|
||||||
:safe => lambda {|arg| arg == 'true' ? true : false},
|
:safe => lambda {|arg| arg == 'true' ? true : false},
|
||||||
:w => lambda {|arg| arg.to_i},
|
:w => lambda {|arg| arg.to_i},
|
||||||
:wtimeout => lambda {|arg| arg.to_i},
|
:wtimeout => lambda {|arg| arg.to_i},
|
||||||
:fsync => lambda {|arg| arg == 'true' ? true : false}
|
:fsync => lambda {|arg| arg == 'true' ? true : false},
|
||||||
|
:journal => lambda {|arg| arg == 'true' ? true : false},
|
||||||
|
:connectTimeoutMS => lambda {|arg| arg.to_i },
|
||||||
|
:socketTimeoutMS => lambda {|arg| arg.to_i },
|
||||||
}
|
}
|
||||||
|
|
||||||
attr_reader :nodes, :auths, :connect, :replicaset, :slaveok, :safe, :w, :wtimeout, :fsync
|
attr_reader :nodes, :auths, :connect, :replicaset, :slaveok, :safe, :w, :wtimeout, :fsync, :journal, :connectTimeoutMS, :socketTimeoutMS
|
||||||
|
|
||||||
# Parse a MongoDB URI. This method is used by Connection.from_uri.
|
# Parse a MongoDB URI. This method is used by Connection.from_uri.
|
||||||
# Returns an array of nodes and an array of db authorizations, if applicable.
|
# Returns an array of nodes and an array of db authorizations, if applicable.
|
||||||
|
@ -76,14 +85,15 @@ module Mongo
|
||||||
def connection_options
|
def connection_options
|
||||||
opts = {}
|
opts = {}
|
||||||
|
|
||||||
if (@w || @wtimeout || @fsync) && !@safe
|
if (@w || @journal || @wtimeout || @fsync) && !@safe
|
||||||
raise MongoArgumentError, "Safe must be true if w, wtimeout, or fsync is specified"
|
raise MongoArgumentError, "Safe must be true if w, journal, wtimeout, or fsync is specified"
|
||||||
end
|
end
|
||||||
|
|
||||||
if @safe
|
if @safe
|
||||||
if @w || @wtimeout || @fsync
|
if @w || @journal || @wtimeout || @fsync
|
||||||
safe_opts = {}
|
safe_opts = {}
|
||||||
safe_opts[:w] = @w if @w
|
safe_opts[:w] = @w if @w
|
||||||
|
safe_opts[:j] = @journal if @journal
|
||||||
safe_opts[:wtimeout] = @wtimeout if @wtimeout
|
safe_opts[:wtimeout] = @wtimeout if @wtimeout
|
||||||
safe_opts[:fsync] = @fsync if @fsync
|
safe_opts[:fsync] = @fsync if @fsync
|
||||||
else
|
else
|
||||||
|
@ -92,6 +102,14 @@ module Mongo
|
||||||
|
|
||||||
opts[:safe] = safe_opts
|
opts[:safe] = safe_opts
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if @connectTimeoutMS
|
||||||
|
opts[:connect_timeout] = @connectTimeoutMS / 1000
|
||||||
|
end
|
||||||
|
|
||||||
|
if @socketTimeoutMS
|
||||||
|
opts[:op_timeout] = @socketTimeoutMS / 1000
|
||||||
|
end
|
||||||
|
|
||||||
if @slaveok
|
if @slaveok
|
||||||
if @connect == 'direct'
|
if @connect == 'direct'
|
||||||
|
|
|
@ -45,6 +45,21 @@ class ConnectionTest < Test::Unit::TestCase
|
||||||
@conn = Connection.from_uri("mongodb://#{host_name}/foo", :connect => false)
|
@conn = Connection.from_uri("mongodb://#{host_name}/foo", :connect => false)
|
||||||
assert_equal [host_name, 27017], @conn.host_to_try
|
assert_equal [host_name, 27017], @conn.host_to_try
|
||||||
end
|
end
|
||||||
|
|
||||||
|
should "set safe options on connection" do
|
||||||
|
host_name = "localhost"
|
||||||
|
opts = "safe=true&w=2&wtimeout=10&fsync=true&journal=true"
|
||||||
|
@conn = Connection.from_uri("mongodb://#{host_name}/foo?#{opts}", :connect => false)
|
||||||
|
assert_equal({:w => 2, :wtimeout => 10, :fsync => true, :j => true}, @conn.safe)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "set timeout options on connection" do
|
||||||
|
host_name = "localhost"
|
||||||
|
opts = "connectTimeoutMS=1000&socketTimeoutMS=5000"
|
||||||
|
@conn = Connection.from_uri("mongodb://#{host_name}/foo?#{opts}", :connect => false)
|
||||||
|
assert_equal 1, @conn.connect_timeout
|
||||||
|
assert_equal 5, @conn.op_timeout
|
||||||
|
end
|
||||||
|
|
||||||
should "parse a uri with a hyphen & underscore in the username or password" do
|
should "parse a uri with a hyphen & underscore in the username or password" do
|
||||||
@conn = Connection.from_uri("mongodb://hyphen-user_name:p-s_s@localhost:27017/db", :connect => false)
|
@conn = Connection.from_uri("mongodb://hyphen-user_name:p-s_s@localhost:27017/db", :connect => false)
|
||||||
|
|
|
@ -78,11 +78,18 @@ class TestThreading < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_opts_safe
|
def test_opts_safe
|
||||||
parser = Mongo::URIParser.new('mongodb://localhost:27018?safe=true;w=2;wtimeout=200;fsync=true')
|
parser = Mongo::URIParser.new('mongodb://localhost:27018?safe=true;w=2;journal=true;wtimeout=200;fsync=true')
|
||||||
assert parser.safe
|
assert parser.safe
|
||||||
assert_equal 2, parser.w
|
assert_equal 2, parser.w
|
||||||
assert_equal 200, parser.wtimeout
|
assert_equal 200, parser.wtimeout
|
||||||
assert parser.fsync
|
assert parser.fsync
|
||||||
|
assert parser.journal
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_opts_unsafe_timeout
|
||||||
|
parser = Mongo::URIParser.new('mongodb://localhost:27018?connectTimeoutMS=5000&socketTimeoutMS=10000')
|
||||||
|
assert_equal 5000, parser.connectTimeoutMS
|
||||||
|
assert_equal 10000, parser.socketTimeoutMS
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_opts_replica_set
|
def test_opts_replica_set
|
||||||
|
|
Loading…
Reference in New Issue