- Reference >
- Database Commands >
- Administration Commands >
- collMod
collMod¶
On this page
Definition¶
-
collMod¶ collModmakes it possible to add flags to a collection to modify the behavior of MongoDB. Flags includeusePowerOf2Sizesandindex. The command takes the following prototype form:In this command substitute
<collection>with the name of a collection in the current database, and<flag>and<value>with the flag and value you want to set.Use the
userFlagsfield in thedb.collection.stats()output to check enabled collection flags.
Flags¶
TTL Collection Expiration Time¶
-
index¶ The
indexflag changes the expiration time of a TTL Collection.Specify the key and new expiration time with a document of the form:
In this example,
<index_spec>is an existing index in the collection andsecondsis the number of seconds to subtract from the current time.On success
collModreturns a document with fieldsexpireAfterSeconds_oldandexpireAfterSeconds_newset to their respective values.On failure,
collModreturns a document withno expireAfterSeconds field to updateif there is no existingexpireAfterSecondsfield orcannot find index { **key**: 1.0 } for ns **namespace**if the specifiedkeyPatterndoes not exist.
Record Allocation¶
Disable All Record Padding¶
-
noPadding¶ New in version 3.0.0.
noPaddingflag is available for the MMAPv1 storage engine only.noPaddingdisables record padding for the collection. Without padding, the record allocation size corresponds to the document size, and any updates that results in document growth will require a new allocation.Warning
Only set
noPaddingtotruefor collections whose workloads have no update operations that cause documents to grow, such as for collections with workloads that are insert-only. For more information, see No Padding Allocation Strategy.
Powers of Two Record Allocation¶
-
usePowerOf2Sizes¶ Deprecated since version 3.0.0.
usePowerOf2Sizesflag is available for the MMAPv1 storage engine only.usePowerOf2Sizeshas no effect on the allocation strategy. MongoDB 3.0 uses the power of 2 allocation as the default record allocation strategy for MMAPv1.To disable the power of 2 allocation for a collection, use the
collModcommand with thenoPaddingflag or thedb.createCollection()method with thenoPaddingoption. For more information, see MMAPv1 Record Allocation Behavior Changes.
Example: Change Expiration Value for Indexes¶
To update the expiration value for a collection
named sessions indexed on a lastAccess field from 30
minutes to 60 minutes, use the following operation:
Which will return the document: