summaryrefslogtreecommitdiff
path: root/src/mongo/SConscript
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-67880 : Check BSON column is decompressible in the validate command.Richard Hausman2022-08-191-1/+0
|
* SERVER-67101 Support microsecond precision in ScopedTimerRuoxin Xu2022-07-271-0/+1
|
* Revert "SERVER-67101 Support microsecond precision in ScopedTimer"Ruoxin Xu2022-07-261-1/+0
| | | | This reverts commit e7d2be0dae29265e2a6efafd4753debf11b9e96f.
* SERVER-67101 Support microsecond precision in ScopedTimerRuoxin Xu2022-07-261-0/+1
|
* SERVER-67162 Integrate new PCRE2 wrapperJennifer Peshansky2022-06-271-1/+0
|
* SERVER-66490 Apply pylinters to build system codeTausif Rahman2022-05-251-16/+16
|
* SERVER-66456 remove ThreadContextBilly Donahue2022-05-161-1/+0
|
* SERVER-66205 Merge `WriteConflictException` and ↵Amirsaman Memaripour2022-05-101-1/+0
| | | | `TemporarilyUnavailableException` into `assert_util.h`
* SERVER-54284 ExceptionFor<ErrorCodes::WriteConflict> should resolve to ↵Amirsaman Memaripour2022-04-281-0/+1
| | | | WriteConflictException
* SERVER-62992 Remove need for resmoke.iniRichard Samuels2022-04-081-0/+1
|
* Revert "SERVER-62992 Remove need for resmoke.ini"Richard Samuels2022-03-301-1/+0
| | | | This reverts commit d4206bdeb19f4c5862280c04cd6b831c9ec03a40.
* SERVER-62992 Remove need for resmoke.iniRichard Samuels2022-03-301-0/+1
|
* SERVER-60832 Readd and fix gcov code coverage variantRichard Samuels2022-02-141-1/+1
|
* Revert "SERVER-60832 Readd and fix gcov code coverage variant"Robert Guo2022-02-041-1/+1
| | | | This reverts commit bf96dbdca5e9c23cf541cb6f53292a18d837cde5.
* SERVER-60832 Readd and fix gcov code coverage variantRichard Samuels2022-02-031-1/+1
|
* SERVER-60970 Repair and extend explicit instantiations for BSON buildersAndrew Morrow2021-11-041-0/+1
|
* SERVER-59918 Create mongoqd binaryjannaerin2021-09-281-31/+2
|
* Revert "SERVER-59918 Create mongoqd binary"Uladzimir Makouski2021-09-281-2/+31
| | | | This reverts commit c8fdce8af95e50b18d1cc821c37ec46adb24851a.
* SERVER-59918 Create mongoqd binaryjannaerin2021-09-271-31/+2
|
* SERVER-59198 versionArray is not aware of -alpha git tagsJon Streets2021-09-271-14/+14
|
* SERVER-48291 Restore design of the boost assert shimAndrew Morrow2021-07-061-1/+1
| | | | | | This was inadvertently lumped in with the other ShimLibrary conversions, but it doesn't actually follow the model. This library has real symbols.
* SERVER-55834 Use forceincludes to automate inclusion of basic.hAndrew Morrow2021-05-051-0/+6
|
* SERVER-43967 remove C++14 references and enable_if configure check.Daniel Moody2021-01-141-1/+0
|
* SERVER-51364 Ubuntu 18.04 Server with OCSP and TLS fails to workShreyas Kalyan2021-01-061-0/+1
|
* SERVER-40811 make initializers throwyBilly Donahue2020-12-081-3/+1
| | | | | | | - Consolidate init-related headers (just init.h and initializer.h) - Factor out a separate DependencyGraph component - Remove MONGO_DEFAULT_PREREQUISITES, MONGO_NO_PREREQUISITES, MONGO_NO_DEPENDENTS. - Document the role of the "default" initializer.
* SERVER-48291 Add global dependency pushdown to libdepsRyan Egesdahl2020-11-261-1/+1
| | | | | | | | | | | | | | | | | We sometimes have situations where a dependency applies at a large scope, such as in the case of tcmalloc, which can apply everywhere. What we have done previously is to hack these dependencies into the LIBDEPS environment variable by adding a builder to all nodes that can produce a compiler result. This is, as stated previously, hackish and hard to control, and it results in adding a Public dependency to all those nodes. What we now do instead is to define LIBDEPS_GLOBAL on the *build environment* (not the Builder node) listing the targets we would like to push down to all other nodes below that point. This has the effect of adding those targets as Private dependencies on all Builder nodes from that point downward, which means some common Public dependencies can be converted to a Private dependency that is stated only once.
* SERVER-52822 Introduced ThreadContext classBen Caimano2020-11-181-0/+1
|
* Revert "SERVER-52822 Introduced ThreadContext class"Ben Caimano2020-11-181-1/+0
| | | | This reverts commit efa320e38916e2a4fd52d808e326af11d2b7938c.
* SERVER-52822 Introduced ThreadContext classBen Caimano2020-11-171-0/+1
|
* SERVER-49703 Added libdep linter alphabetic rule and update all libdeps list ↵Daniel Moody2020-08-271-1/+1
| | | | to be alphabetical
* SERVER-49768 Remove logv1 logger components, and make rotation a callback listSara Golemon2020-08-181-9/+0
|
* SERVER-49356 Rehome target declarations out of src/mongo/SConscriptAndrew Morrow2020-07-211-743/+79
|
* SERVER-48050 FCV should be initialized before attempting to restart ↵Louis Williams2020-07-201-2/+2
| | | | | | | | | | | | | | | | | in-progress index builds * Refactored repairDatabaseAndCheckVersion by moving FCV logic into the FeatureCompatibilityVersion class * Refactored repairDatabaseAndCheckVersion by separating procedures of regular recovery, read-only mode, and repair * Renamed repairDatabaseAndCheckVersion to repairAndRecoverDatabases * Moved startup recovery/repair free function into a 'startup_recovery' namespace * Moved repair free functions into a 'repair' namespace. renamed: src/mongo/db/repair_database_and_check_version.cpp -> src/mongo/db/startup_recovery.cpp renamed: src/mongo/db/repair_database_and_check_version.h -> src/mongo/db/startup_recovery.h renamed: src/mongo/db/repair_database.cpp -> src/mongo/db/repair.cpp renamed: src/mongo/db/repair_database.h -> src/mongo/db/repair.h
* SERVER-38987 Replace ephemeralForTest storage engine with biggie implementationHenrik Edin2020-07-171-2/+1
| | | | | | | | ephemeralForTest is now a document level locking engine unittests instantiate the oplog as it is required with doc-level locking engines Added a 'incompatible_with_eft' tag for tests that don't work with this engine for different reasons. Many concurrency suites are disabled due to excessive memory usage
* SERVER-49403 Ensure compass installer has correct execute bits setAndrew Morrow2020-07-111-1/+4
|
* SERVER-47277 Remove non-hygienic build supportAndrew Morrow2020-07-081-193/+29
|
* SERVER-49316 Unbreak dynamic buildSpencer T Brody2020-07-081-0/+1
|
* SERVER-48546 Reduce scope of libraries injected via libbaseAndrew Morrow2020-06-251-11/+34
|
* SERVER-48924 Move ReplicaSetAwareService into repl directory and namespaceSpencer T Brody2020-06-241-1/+1
|
* SERVER-48775 Make OpObserverShardingImpl to be part of sharding_runtime_dKaloian Manassiev2020-06-151-2/+0
|
* SERVER-46718 Support 'let' parameters for findAndModify in sharded environmentsKatherine Wu2020-06-121-0/+1
|
* SERVER-46726 Provide separate setParameter to disable diagnostic workAmirsaman Memaripour2020-06-051-0/+3
|
* SERVER-47914 Move clusterTime from LogicalClock to VectorClockKevin Pulo2020-06-051-1/+1
|
* SERVER-46993 Split parameters exclusive to mongos from being included in ↵Randolph Tan2020-06-021-0/+1
| | | | mongod binaries
* SERVER-48272 Reduce startup time for dynamically linked binariesAndrew Morrow2020-05-271-101/+295
| | | | | | Minimizing the list of NEEDED entries directly attached to the core programs reduces startup time for dynamically linked binaries by approximately 40 percent.
* SERVER-48412 Remove kRS log tagHenrik Edin2020-05-271-1/+0
|
* SERVER-39140 Remove BackgroundOperationLouis Williams2020-05-261-1/+0
|
* SERVER-46957 Implement Quiesce Mode for mongosPavi Vetriselvan2020-05-131-0/+1
|
* SERVER-47672: Add minSnapshotHistoryWindowInSeconds and remove snapshot ↵Lingzhi Deng2020-05-071-1/+0
| | | | window adjustment logic
* SERVER-47793 Remove library dependency of sessions_collection_sharded on ↵Kaloian Manassiev2020-04-281-16/+17
| | | | sessions_collection_rs