summaryrefslogtreecommitdiff
path: root/src/mongo/s/mongos_options.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-66203 move MONGO_LOGV2_DEFAULT_COMPONENT defs below includesBilly Donahue2022-05-061-1/+3
|
* SERVER-61844 Allow mongos and mongoq to have different startup initializationEsha Maharishi2021-12-171-1/+1
|
* SERVER-50508 Rename ConnectionType::MASTER to ConnectionType::kStandaloneBen Caimano2020-10-261-1/+2
|
* SERVER-47735 change mongo source over to logv2Billy Donahue2020-04-261-1/+1
| | | | | | - Remove several legacy logger/ files - Convert all MONGO_LOG_DEFAULT_COMPONENT to the LOGV2 version. - Globally replace logger::{LogSeverity,LogComponent} => logv2::
* SERVER-46765 fix '--version' & '--sysinfo', which use kPlain loggingBilly Donahue2020-03-231-1/+1
| | | | | | This reverts commit 79a8452b2a813b796059e5eab6c18f685283ce08. with new spot fix: printCommandLineOpts when sending to log
* Revert "SERVER-46765 fix '--version' & '--sysinfo', which use kPlain logging"Max Hirschhorn2020-03-231-1/+1
| | | | This reverts commit cddfeb0c7cb137d46b14da18a7cfd4905bfab87f.
* SERVER-46765 fix '--version' & '--sysinfo', which use kPlain loggingBilly Donahue2020-03-201-1/+1
|
* SERVER-45567 removing util/log.h where I canGabriel Russell2020-02-281-8/+13
|
* SERVER-46405 Remove {get,set,clear}MinimumLoggedSeverity from logger V1 APIMark Benvenuto2020-02-271-1/+3
|
* SERVER-45456 Allow JavaScript on mongosJames Wahlin2020-02-071-3/+17
| | | | | | | create mode 100644 jstests/noPassthrough/mr_noscripting.js delete mode 100644 jstests/noPassthroughWithMongod/mr_noscripting.js create mode 100644 jstests/sharding/agg_js_on_mongos.js create mode 100644 jstests/sharding/javascript_heap_limit.js
* SERVER-44142 correctly utilize LogSeverity in logv2Gabriel Russell2019-11-251-2/+1
|
* SERVER-18463 Remove StartupTest infrastructure, place StartupTests intoNathan Brown2019-06-071-2/+0
| | | | unittests
* SERVER-40476 merge contents of utils/stringutils into utils/str.Billy Donahue2019-04-111-3/+2
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-1/+1
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-39500 Migrate general server options to IDLSara Golemon2019-02-161-12/+1
|
* SERVER-39501 Migrate windows options to IDLSara Golemon2019-02-141-16/+1
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-39409: Convert configuration options in mongos_options.cpp to IDLShreyas Kalyan2019-02-081-45/+0
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+16
|
* SERVER-35979 Split ssl_otions and decouple from main runtimeSara Golemon2018-07-091-21/+0
|
* SERVER-35297 Split server_options and server_status into two pieces.Henrik Edin2018-06-071-1/+1
| | | | Similarly to how commands are setup, so embedded can depend on a smaller library with fewer dependencies.
* SERVER-34805 Refactor the network libraries and move messages types to ↵Andrew Morrow2018-05-051-1/+1
| | | | rpc/protocol
* SERVER-33123 Mongos noscripting command line and configurationBen Caimano2018-03-221-2/+19
| | | | | Hid --noscripting, added and hid security.javascriptEnabled, warned on set for mongos.
* SERVER-27244 Status usage compile-time facilities.ADAM David Alan Martin2017-06-181-4/+4
| | | | | | | | | | | | | | | | | There are numerous places in the codebase where `mongo::Status` or `mongo::StatusWith< T >` objects are returned and never checked. Many of these are innocuous, but many of them are potentially severe bugs. This change introduces facilities to permit compile-time warning of unchecked `Status` and `StatusWith` usage on clang compilers. It introduces an `ignore` function which is useful to state that a specific "ignored status" case was intentional. It not presently an error, in clang builds, to forget to check a `Status` -- this will come in a later commit. This also introduces a `transitional_ignore` function, which allows for easy continual auditing of the codebase for current "whitelisted" unchecked-status instances. All present "ignored status" cases have been marked `transitional_ignore`.
* SERVER-29000 Remove the miniwebserver and derivativesAndrew Morrow2017-04-271-11/+0
|
* SERVER-26664 Remove sharding.chunkSize command line option from --helpKaloian Manassiev2016-10-191-3/+0
|
* SERVER-25629 Log a warning if it looks like the operator reversed the two ↵Andy Schwerin2016-09-301-0/+15
| | | | haves of the CSRS config string passed to --configdb.
* SERVER-24914 SERVER-24915 improve getting cwd at server startupKevin Pulo2016-08-161-2/+2
|
* SERVER-24227 Replace autoSplit startup opt with proper settingJess Fan2016-07-061-32/+0
|
* SERVER-23733 Remove the mongos chunkSize startup optionKaloian Manassiev2016-06-021-15/+0
| | | | | This change removes the chunkSize startup option from mongos in place of the 'chunksize' setting.
* SERVER-23971 Clang-Format codeMark Benvenuto2016-05-281-12/+12
|
* SERVER-23270 Fix command line help text for --confidbMisha Tyulenev2016-04-211-8/+5
|
* SERVER-23696 Get rid of SettingsTypeKaloian Manassiev2016-04-201-1/+1
| | | | | | Splits all the functionality of SettingsType into the constituent ChunkSizeSettings and BalancerSettings and moves it under the BalancerConfiguration utility.
* SERVER-23696 Consolidate balancer configuration into single classKaloian Manassiev2016-04-191-9/+10
| | | | In addition fixes linking dependencies.
* SERVER-22320 remove SYNC option and SyncClusterConnectionMisha Tyulenev2016-03-101-29/+20
|
* SERVER-21320 When no port is provided for a configdb argument to mongos, assumeAndy Schwerin2015-11-181-1/+12
| | | | | | | port 27019. This is the behavior for mongodb 3.0 and prior, which was inadvertently removed while refactoring sharding code in preparation for SERVER-1448.
* SERVER-20971 Improve mongos help text for --configdb optionSpencer T Brody2015-10-221-1/+7
|
* SERVER-20970 Allow a single-node SCCC config serverKaloian Manassiev2015-10-191-6/+7
| | | | | Enables the configuration in mongos and also writes a smoke test to ensure that the basic sharding operations work.
* SERVER-19590 Remove --upgrade from mongosRandolph Tan2015-08-211-8/+0
|
* SERVER-19414 Use CatalogManagerReplicaSet when config servers are a replica setSpencer T Brody2015-07-231-6/+5
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-166/+164
|
* SERVER-18947 Cleanup unused code in chunk.hKaloian Manassiev2015-06-171-5/+3
| | | | | This is in preparation for moving out networking code out of the Chunk class.
* SERVER-18567 Replace legacy ConnectionString::parse in MongoS startupKaloian Manassiev2015-05-221-9/+9
|
* SERVER-18104 Prevent starting mongos if it's pointing to a standalone config ↵Spencer T Brody2015-04-231-5/+9
| | | | server
* SERVER-18071 Parse mongos 'configdb' command line parameter into a ↵Spencer T Brody2015-04-161-5/+19
| | | | ConnectionString rather than a vector of strings
* SERVER-17863 Sort in config.h header when possibleAndrew Morrow2015-04-031-2/+1
|
* SERVER-9563 Add support for config.h headerJonathan Reams2015-03-261-3/+5
|
* SERVER-17496 Move ChunkManager to separate fileKaloian Manassiev2015-03-091-1/+1
|
* SERVER-13256 Add usings and qualifications for names from namespace stdAndrew Morrow2015-01-151-0/+2
|
* SERVER-13256 Scope iostream more narrowlyAndrew Morrow2015-01-051-0/+1
|