Go to file
Luke Chen b1e55e285f Import wiredtiger: 002ce30f6845d6d070252a5b014168f7265a9448 from branch mongodb-4.4
ref: ec263e21b9..002ce30f68
for: 4.4.30

WT-13262 Limit the number of btrees processed for obsolete time window info in eviction (4.4)

GitOrigin-RevId: af23f9edcd07d80f8483cac1291c3196dc2fa1a3
2024-07-23 13:25:35 +00:00
.vscode_defaults SERVER-68594 Backport vscode workspace 2023-03-25 00:16:01 +00:00
buildscripts SERVER-77561: configurable resmoke logger and buffered file handler for resmoke logging 2024-05-03 21:32:37 +00:00
debian SERVER-78987 Remove the free monitoring code from mongodb/mongo repo 2023-08-29 23:06:41 +00:00
distsrc SERVER-61856 SERVER-42470 update libunwind to 1.6.2 2022-05-18 06:19:25 +00:00
docs SERVER-66627 add install-devcore target for forward compatibility 2022-05-21 20:58:51 +00:00
etc SERVER-90264 Delete references to distsrc in evergreen config (#21965) 2024-05-07 21:59:07 +00:00
evergreen SERVER-81202: use host environment when signing 2023-09-22 22:10:16 +00:00
jstests SERVER-80279 Disallow continuing a transaction router that was not started 2024-02-13 08:46:45 +00:00
pytests SERVER-67993 fix 4.4 pylinters 2022-07-12 18:52:26 +00:00
rpm SERVER-76179 Add RuntimeDirectory to mongod.service for RPM 2023-05-17 18:49:13 +00:00
site_scons SERVER-74287 add oom retry tool 2023-03-21 04:32:23 +00:00
src Import wiredtiger: 002ce30f6845d6d070252a5b014168f7265a9448 from branch mongodb-4.4 2024-07-23 13:25:35 +00:00
.clang-format SERVER-41771 Use `clang-format-7.0.1` in our clang-format helper script 2019-07-27 11:02:21 -04:00
.eslintignore SERVER-31390 Use a templating language to generate error_codes.{h,cpp,js} 2017-11-02 14:25:21 -04:00
.eslintrc.yml SERVER-70553 Add module support to jstests 2022-12-27 19:33:51 +00:00
.gdbinit SERVER-28668 Add mongo_printers.py to .gdbinit 2017-04-07 10:45:46 -04:00
.gitattributes SERVER-29877 Mount /data on EBS volume in AWS EC2 instance 2017-07-06 09:59:28 -04:00
.gitignore SERVER-70672 Merge enterprise repo into 10gen/mongo 2023-11-29 20:48:31 +00:00
.lldbinit SERVER-41168 Add lldb comment to .lldbinit 2019-06-17 10:07:37 -04:00
.pydocstyle SERVER-40559 Python linters do not run after upgrade to Python 3 2019-04-16 14:33:43 -04:00
.pylintrc SERVER-40559 Python linters do not run after upgrade to Python 3 2019-04-16 14:33:43 -04:00
.style.yapf SERVER-23312 Format Python files with yapf 2018-03-26 13:04:25 -04:00
APACHE-2.0.txt Add the Apache 2 license, add licensing info to README. MINOR 2010-02-03 13:31:51 -05:00
CONTRIBUTING.rst SERVER-29767 Update CONTRIBUTING.rst to point to github wiki 2017-06-21 11:05:25 -04:00
CreativeCommons.txt SERVER-45070 Add Creative Commons license for TLA+ specifications 2019-12-15 01:59:46 +00:00
LICENSE-Community.txt SERVER-37651 Fix typo in license files 2018-10-17 13:56:42 -04:00
README SERVER-83908 Update to the 4.4 README (#17394) 2023-12-05 19:36:07 +00:00
README.third_party.md SERVER-79022 Update ASIO's Git hash in README.third_party.md 2023-08-07 20:30:24 +00:00
SConstruct SERVER-78987 Remove the free monitoring code from mongodb/mongo repo 2023-08-29 23:06:41 +00:00
copybara.sky SERVER-81949 Sync from 10gen/mongo to mongodb/mongo on v4.4 with copybara (#16114) 2023-11-06 04:14:20 +00:00
copybara.staging.sky SERVER-78687 Set up copybara syncing between 10gen/mongo and 10gen/mongo-copybara 2023-10-05 17:45:28 +00:00
mypy.ini SERVER-50592 Update mypy and GitPython pip requirements 2021-02-17 20:02:02 +00:00

README

MongoDB README

Welcome to MongoDB 4.4!

COMPONENTS

  mongod - The database server.
  mongos - Sharding router.
  mongo  - The database shell (uses interactive javascript).

UTILITIES

  install_compass   - Installs MongoDB Compass for your platform.

BUILDING

  See docs/building.md.

RUNNING

  For command line options invoke:

    $ ./mongod --help

  To run a single server database:

    $ sudo mkdir -p /data/db
    $ ./mongod
    $
    $ # The mongo javascript shell connects to localhost and test database by default:
    $ ./mongo
    > help

INSTALLING COMPASS

  You can install compass using the install_compass script packaged with MongoDB:

    $ ./install_compass

  This will download the appropriate MongoDB Compass package for your platform
  and install it.

DRIVERS

  Client drivers for most programming languages are available at
  https://docs.mongodb.com/manual/applications/drivers/. Use the shell
  ("mongo") for administrative tasks.

BUG REPORTS

  See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.

PACKAGING

  Packages are created dynamically by the package.py script located in the
  buildscripts directory. This will generate RPM and Debian packages.

DOCUMENTATION

  https://docs.mongodb.com/manual/

CLOUD HOSTED MONGODB

  https://www.mongodb.com/cloud/atlas

FORUMS

  https://community.mongodb.com

    A forum for technical questions about using MongoDB.

  https://community.mongodb.com/c/server-dev

    A forum for technical questions about building and developing MongoDB.

LEARN MONGODB

  https://university.mongodb.com/

LICENSE

  MongoDB is free and the source is available. Versions released prior to
  October 16, 2018 are published under the AGPL. All versions released after
  October 16, 2018, including patch fixes for prior versions, are published
  under the Server Side Public License (SSPL) v1. See individual files for
  details.