See https://jira.mongodb.org/browse/HELP-92666
The new error recovery code is using a ":?" format, which uses a feature of the fmtlib library that didn't exist in the version of fmtlib (v7) that the 8.0 branch uses.
src/mongo/util/procparser.cpp:153
return {ErrorCodes::FileStreamFailed, fmt::format("Huge file {:?}", filename)};}
Changing this line to
return {ErrorCodes::FileStreamFailed, fmt::format("Huge file '{}'", filename)};}
Will fix it.
- related to
-
SERVER-115584 Handle unexpectedly large /proc/mountinfo files
-
- Closed
-