0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00

SERVER-25181 Increase default ftdc size to 200 MB

This commit is contained in:
Bruce Lucas 2016-08-04 13:56:49 -04:00 committed by GitHub
parent 4b42a50039
commit 422eb112ca

View File

@ -86,7 +86,7 @@ struct FTDCConfig {
static const bool kEnabledDefault = true;
static const std::int64_t kPeriodMillisDefault;
static const std::uint64_t kMaxDirectorySizeBytesDefault = 100 * 1024 * 1024;
static const std::uint64_t kMaxDirectorySizeBytesDefault = 200 * 1024 * 1024;
static const std::uint64_t kMaxFileSizeBytesDefault = 10 * 1024 * 1024;
static const std::uint64_t kMaxFileUniqifier = 65000;