summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-14420 Get rid of global replSettings objectSpencer T Brody2014-07-0936-201/+297
|
* SERVER-14436 Fix signed-unsigned comparison compile error in unit test.Andy Schwerin2014-07-091-2/+2
|
* SERVER-9986 refactor near search for 2D and S2Greg Studer2014-07-0948-2879/+2520
| | | | | Adds progressive search functionality for $geoNear operations, allowing better integration with other cursors.
* SERVER-14408 access stats directly from execution stagesDavid Storch2014-07-0860-249/+734
|
* SERVER-14482 Add ability to append RegEx into BSONArrayBuilderTyler Brock2014-07-082-1/+14
|
* SERVER-14387 fix compile on OS X 10.8 C++11 DEBUGCraig Harris2014-07-081-22/+20
|
* SERVER-14436 Introduce MemberConfig and ReplicaSetTag types and parsing.Andy Schwerin2014-07-087-1/+781
| | | | These types describe the configurations of individual members of replica sets.
* SERVER-14436 Introduce Milliseconds and Seconds types in time_support.hAndy Schwerin2014-07-081-0/+4
|
* SERVER-14499 eliminate ReplicationStartSynchronizermatt dannenberg2014-07-084-20/+2
|
* SERVER-14500 remove the replSet boolmatt dannenberg2014-07-089-25/+30
|
* SERVER-14484 remove the replset portion of dbtestmatt dannenberg2014-07-081-596/+0
|
* SERVER-13674 fix whitespace in CachedPlanStageDavid Storch2014-07-081-28/+27
|
* SERVER-14387 Propogate OperationContext through calls requiring document ↵Craig Harris2014-07-08146-1012/+1398
| | | | read locks, without doing the locking.
* SERVER-14460 Fix lintSpencer T Brody2014-07-071-1/+1
|
* SERVER-14299 prevent mongos from requesting unnecessary batches for sort + ↵David Storch2014-07-073-13/+51
| | | | limit queries
* SERVER-14436 Introduce bsonCheckOnlyHasFields helpers.Andy Schwerin2014-07-073-0/+167
| | | | | These helpers paired with the bsonExtract helpers faciliate the manual parsing of structures out of BSONObj.
* SERVER-14460 Comment out implementation of checkReplicaMemberVersions for nowSpencer T Brody2014-07-071-66/+69
|
* SERVER-14436 Remove dead ReplSetConfig::HealthOptions type.Andy Schwerin2014-07-072-25/+0
| | | | It has no consumers. The one instance is never changed or consulted.
* SERVER-14471 Fixing lint error because of whitespaceKaloian Manassiev2014-07-071-1/+1
|
* SERVER-14471 Fix build break with the Visual Studio 2013 Update 2 toolkitKaloian Manassiev2014-07-076-0/+12
|
* SERVER-14135 remove some usage of godMode and replSet bool from ↵matt dannenberg2014-07-031-6/+1
| | | | LegacyReplicationCoordinator
* SERVER-14135 implement getHostsWrittenTo() in LegacyReplicationCoordinatormatt dannenberg2014-07-038-1/+29
|
* SERVER-14135 implement buildsIndexes() in LegacyReplicationCoordinatormatt dannenberg2014-07-038-1/+25
|
* SERVER-14135 implement shutdown() in LegacyReplicationCoordinatormatt dannenberg2014-07-032-5/+5
|
* SERVER-14135 implement waitUpToOneSecondForOptimeChange() in ↵matt dannenberg2014-07-0310-10/+31
| | | | LegacyReplicationCoordinator
* SERVER-14135 implement getElectionId() in LegacyReplicationCoordinatormatt dannenberg2014-07-0310-9/+34
|
* SERVER-14135 implement processHandshake() in LegacyReplicationCoordinatormatt dannenberg2014-07-0315-73/+99
|
* post 2.7.3Jonathan Reams2014-07-031-1/+1
|
* BUMP 2.7.3r2.7.3Jonathan Reams2014-07-031-1/+1
|
* SERVER-14254 (v8-3.25) convert _v8_function from function pointer to booleanBenety Goh2014-07-021-4/+6
|
* SERVER-14254 convert _v8_function from function pointer to booleanBenety Goh2014-07-021-4/+4
|
* SERVER-14318 Use structs for replication command argumentsSpencer T Brody2014-07-029-116/+98
|
* SERVER-14426 Add a StringData method to BSONElementSpencer T Brody2014-07-027-26/+27
|
* SERVER-14419 Implement HostAndPort::parse.Andy Schwerin2014-07-023-23/+67
|
* SERVER-14419 Introduce unittest of HostAndPort; make ":123" unparseable due ↵Andy Schwerin2014-07-024-2/+96
| | | | to lack of host component.
* SERVER-14419 Correctly parse the "masterHost" argument to Cloner::go into a ↵Andy Schwerin2014-07-021-7/+22
| | | | | | | | ConnectionString, not a HostAndPort. The argument represents a ConnectionString, but we parse it into a HostAndPort when doing isSelf checks. This was an error before that led checks to succeed incorrectly, but fails with the new HostAndPort parsing code from SERVER-14419.
* SERVER-4345 mongorestore will read from stdin when filename is "-"Benety Goh2014-07-022-17/+29
| | | | | check eof only on fifo files. restored original logic of checking bytes read against file length. mongorestore requires both --db and --collection when using stdin/fifo
* SERVER-4345 Add support processing fifo files in mongorestoreAzat Khuzhin2014-07-022-18/+37
| | | | | | | | | Example : `./mongorestore -d test -c foo_dupl <(mongodump -d test -c foo -out - 2>/dev/null | tail -n+2)` Example (after pull #204) : `./mongorestore -d test -c foo_dupl <(mongodump -d test -c foo -out - 2>/dev/null)` This closes #205 Signed-off-by: Benety Goh <benety@mongodb.com>
* SERVER-14419 Improve error message when parseNumberFromString encounters a ↵Andy Schwerin2014-07-021-4/+10
| | | | bad digit.
* SERVER-14370 Core functionality for setLastOptime and awaitReplication in ↵Spencer T Brody2014-07-025-18/+432
| | | | ReplicationCoordinatorImpl
* SERVER-14418 Introduce unittest::assertGet, use in replication_executor_test.Andy Schwerin2014-07-022-26/+31
|
* SERVER-13989: clean up quota apiEliot Horowitz2014-07-0122-150/+147
|
* SERVER-5092 assign default log component to server modulesBenety Goh2014-07-01107-55/+486
|
* SERVER-13471 map reduce loglevel changes for debug messagesThomas Rueckstiess2014-07-011-3/+6
| | | | Signed-off-by: Benety Goh <benety@mongodb.com>
* SERVER-14404 eliminate isCurrentlyAReplSetPrimary()matt dannenberg2014-07-013-8/+5
|
* SERVER-14135 implement canServeReadsFor() in LegacyReplicationCoordinatormatt dannenberg2014-07-0112-130/+45
|
* SERVER-14405 remove getIndexPrefetchConfig calls from outside the repl namespacematt dannenberg2014-07-013-8/+21
|
* SERVER-13951 Improve Rollback code for DurRecoveryUnitMathias Stearn2014-07-012-56/+62
|
* SERVER-5378 replaced jstests/core/mr_parampositions.js with mr_test.cpp for ↵Benety Goh2014-07-011-0/+16
| | | | out parameter field ordering
* SERVER-5378 out {} parameters position independenceosheroff2014-07-011-11/+13
| | | | | | | Where we put replace, db, inline, etc within the map-reduce "out" BSON object shouldn't matter Signed-off-by: Benety Goh <benety@mongodb.com>