Home
last modified time | relevance | path

Searched refs:mongod_options (Results 1 – 25 of 98) sorted by relevance

1234

/dports/databases/mongodb36/mongodb-src-r3.6.23/buildscripts/resmokelib/testing/fixtures/
H A Dmasterslave.py28 mongod_options=None, argument
36 if "dbpath" in mongod_options:
40 self.mongod_options = utils.default_if_none(mongod_options, {})
118 def _new_mongod(self, mongod_logger, mongod_options): argument
126 mongod_options=mongod_options,
137 mongod_options = self.mongod_options.copy()
138 mongod_options.update(self.master_options)
139 mongod_options["master"] = ""
151 mongod_options = self.mongod_options.copy()
152 mongod_options.update(self.slave_options)
[all …]
H A Dshardedcluster.py38 mongod_options=None, argument
55 if "dbpath" in mongod_options:
61 self.mongod_options = utils.default_if_none(mongod_options, {})
233 mongod_options = self.mongod_options.copy()
243 mongod_options=mongod_options,
267 mongod_options = self.mongod_options.copy()
269 mongod_options["shardsvr"] = ""
276 mongod_options=mongod_options,
296 mongod_options = self.mongod_options.copy()
298 mongod_options["shardsvr"] = ""
[all …]
H A Dstandalone.py33 mongod_options=None, argument
39 if "dbpath" in mongod_options and dbpath_prefix is not None:
45 self.mongod_options = utils.default_if_none(mongod_options, {}).copy()
50 if "dbpath" not in self.mongod_options:
51 self.mongod_options["dbpath"] = os.path.join(
53 self._dbpath = self.mongod_options["dbpath"]
69 if "port" not in self.mongod_options:
70 self.mongod_options["port"] = core.network.PortAllocator.next_fixture_port(self.job_num)
71 self.port = self.mongod_options["port"]
75 **self.mongod_options)
H A Dreplicaset.py29 self, logger, job_num, mongod_executable=None, mongod_options=None, dbpath_prefix=None, argument
39 self.mongod_options = utils.default_if_none(mongod_options, {})
64 if "dbpath" in self.mongod_options:
65 self._dbpath_prefix = self.mongod_options.pop("dbpath")
75 self.replset_name = self.mongod_options.get("replSet", "rs")
84 self.nodes[i].mongod_options["set_parameters"][
329 mongod_options = self.mongod_options.copy()
330 mongod_options["replSet"] = replset_name
331 mongod_options["dbpath"] = os.path.join(self._dbpath_prefix, "node{}".format(index))
332 mongod_options["set_parameters"] = mongod_options.get("set_parameters", {}).copy()
[all …]
/dports/databases/mongodb42-tools/mongo-tools-r4.2.17/test/qa-tests/buildscripts/resmokelib/testing/fixtures/
H A Dmasterslave.py28 mongod_options=None, argument
36 if "dbpath" in mongod_options:
40 self.mongod_options = utils.default_if_none(mongod_options, {})
169 def _new_mongod(self, mongod_logger, mongod_options): argument
177 mongod_options=mongod_options,
189 mongod_options = self.mongod_options.copy()
190 mongod_options.update(self.master_options)
191 mongod_options["master"] = ""
204 mongod_options = self.mongod_options.copy()
205 mongod_options.update(self.slave_options)
[all …]
H A Dstandalone.py33 mongod_options=None, argument
39 if "dbpath" in mongod_options and dbpath_prefix is not None:
45 self.mongod_options = utils.default_if_none(mongod_options, {}).copy()
50 if "dbpath" not in self.mongod_options:
54 self.mongod_options["dbpath"] = os.path.join(dbpath_prefix,
57 self._dbpath = self.mongod_options["dbpath"]
71 if "port" not in self.mongod_options:
72 self.mongod_options["port"] = core.network.PortAllocator.next_fixture_port(self.job_num)
73 self.port = self.mongod_options["port"]
77 **self.mongod_options)
H A Dshardedcluster.py37 mongod_options=None, argument
51 if "dbpath" in mongod_options:
57 self.mongod_options = utils.default_if_none(mongod_options, {})
181 mongod_options = copy.deepcopy(self.mongod_options)
182 mongod_options["configsvr"] = ""
183 mongod_options["dbpath"] = os.path.join(self._dbpath_prefix, "config")
184 mongod_options["replSet"] = ShardedClusterFixture._CONFIGSVR_REPLSET_NAME
185 mongod_options["storageEngine"] = "wiredTiger"
190 mongod_options=mongod_options,
205 mongod_options = copy.deepcopy(self.mongod_options)
[all …]
H A Dreplicaset.py28 mongod_options=None, argument
38 self.mongod_options = utils.default_if_none(mongod_options, {})
47 if "dbpath" in self.mongod_options:
48 self._dbpath_prefix = self.mongod_options.pop("dbpath")
61 self.replset_name = self.mongod_options.get("replSet", "rs")
182 mongod_options = self.mongod_options.copy()
183 mongod_options["replSet"] = replset_name
184 mongod_options["dbpath"] = os.path.join(self._dbpath_prefix, "node%d" % (index))
189 mongod_options=mongod_options,
/dports/databases/mongodb36/mongodb-src-r3.6.23/buildscripts/resmokeconfig/suites/
H A Dwith_server.yml9 mongod_options:
H A Dintegration_tests_standalone.yml17 mongod_options:
H A Dwatchdog.yml16 mongod_options:
H A Ddecimal.yml20 mongod_options:
H A Dno_passthrough_with_mongod.yml20 mongod_options:
H A Dparallel.yml20 mongod_options:
H A Dserial_run.yml20 mongod_options:
H A Dslow1.yml20 mongod_options:
H A Ddisk_wiredtiger.yml23 mongod_options:
H A Dmmap.yml23 mongod_options:
H A Dcore_op_query.yml25 mongod_options:
H A Dintegration_tests_sharded.yml19 mongod_options:
H A Djstestfuzz.yml23 mongod_options:
H A Dcore.yml25 mongod_options:
H A Daggregation.yml24 mongod_options:
/dports/databases/mongodb36/mongodb-src-r3.6.23/pytests/
H A Dpowertest.py1054 def mongod_options(self): member in MongodControl
1185 options.mongod_options = "{} --replSet {}".format(options.mongod_options, options.repl_set)
1200 options=options.mongod_options)
1971 mongod_options.add_option("--replSet",
1984 mongod_options.add_option("--mongodPort",
1991 mongod_options.add_option("--mongodUsablePorts",
1999 mongod_options.add_option("--mongodOptions",
2004 mongod_options.add_option("--fcv",
2009 mongod_options.add_option("--removeLockFile",
2156 parser.add_option_group(mongod_options)
[all …]
/dports/databases/mongodb42-tools/mongo-tools-r4.2.17/test/qa-tests/buildscripts/resmokeconfig/suites/
H A Drestore_gzip.yml18 mongod_options:

1234