-
Notifications
You must be signed in to change notification settings - Fork 1.7k
DOCS-4559: adds new glossary terms for 2.8 #2093
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -615,6 +615,12 @@ Glossary | |
:doc:`/reference/command/collMod` and | ||
:collflag:`usePowerOf2Sizes`. | ||
|
||
prefix compression | ||
Reduces memory and disk consumption by storing any identical index | ||
key prefixes only once, per page of memory. See: | ||
:ref:`storage-wiredtiger-compression` for more about WiredTiger's | ||
compression behavior. | ||
|
||
pre-splitting | ||
An operation performed before inserting data that divides the | ||
range of possible shard key values into chunks to facilitate easy | ||
|
@@ -817,6 +823,16 @@ Glossary | |
information on master/slave replication, see | ||
:doc:`/core/master-slave`. | ||
|
||
snappy | ||
A compression/decompression library designed to balance | ||
efficient computation requirements with reasonable compression rates. | ||
Snappy is the default compression | ||
library for MongoDB's use of ':ref:`WiredTiger | ||
<storage-wiredtiger>`. See: `Snappy | ||
<https://code.google.com/p/snappy/>`_ and the `WiredTiger compression | ||
documentation <http://source.wiredtiger.com/2.4.1/compression.html>`_ | ||
for more information. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would make it clear that this is the default for mongodb's use of wiredtiger. designed for... > "designed to balance efficient computation requirements with reasonable compression rates' There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done! |
||
|
||
split | ||
The division between :term:`chunks <chunk>` in a :term:`sharded | ||
cluster`. See :doc:`/core/sharding-chunk-splitting`. | ||
|
@@ -961,3 +977,12 @@ Glossary | |
relevant chunk get applied to the proper shard. For related | ||
information, see :ref:`faq-writebacklisten` and | ||
:ref:`server-status-writebacksqueued`. | ||
|
||
zlib | ||
A data compression library that provides higher compression rates | ||
at the cost of more CPU, compared to MongoDB's use of | ||
:term:`snappy`. You can configure :ref:`WiredTiger | ||
<storage-wiredtiger>` to use zlib as its compression library. See: | ||
http://www.zlib.net and the `WiredTiger compression documentation | ||
<http://source.wiredtiger.com/2.4.1/compression.html>`_ for more | ||
information. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should mention that zlib provides an implementation of the DEFLATE/INFLATE compression algorithm. also mention that it's the same as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we whitelist prefix compression for indexes and block compression for collections. this change seems odd.