- Reference >
- Database Commands >
- Administration Commands >
- create
create¶
On this page
Definition¶
-
create¶ Changed in version 3.4: Added support for the creation of views and the specification of Collation.
Explicitly creates a collection or view.
createhas the following form:createhas the following fields:Field Type Description createstring The name of the new collection or view. See Naming Restrictions. cappedboolean Optional. To create a capped collection, specify true. If you specifytrue, you must also set a maximum size in thesizefield.autoIndexIdboolean Optional. Specify
falseto disable the automatic creation of an index on the_idfield.Important
For replica sets, do not set
autoIndexIdtofalse.Deprecated since version 3.2.
sizeinteger Optional. Specify a maximum size in bytes for a capped collection. Once a capped collection reaches its maximum size, MongoDB removes the older documents to make space for the new documents. The sizefield is required for capped collections and ignored for other collections.maxinteger Optional. The maximum number of documents allowed in the capped collection. The sizelimit takes precedence over this limit. If a capped collection reaches thesizelimit before it reaches the maximum number of documents, MongoDB removes old documents. If you prefer to use themaxlimit, ensure that thesizelimit, which is required for a capped collection, is sufficient to contain the maximum number of documents.flagsinteger Optional. Available for the MMAPv1 storage engine only to set the
usePowerOf2Sizesand thenoPaddingflags. To set, specify one of the following values:0corresponds tousePowerOf2Sizesflag set tofalseandnoPaddingflag set tofalse.1corresponds tousePowerOf2Sizesflag set totrueandnoPaddingflag set tofalse.2corresponds tousePowerOf2Sizesflag set tofalseandnoPaddingflag set totrue.3corresponds tousePowerOf2Sizesflag set totrueandnoPaddingflag set totrue.
Note
MongoDB 3.0 ignores the
usePowerOf2Sizesflag. SeecollModanddb.createCollection()for more information.Defaults to
1.New in version 2.6.
Changed in version 3.0.0: Add support for setting the new
noPaddingflag.Warning
Do not set
noPaddingif the workload includes removes or any updates that may cause documents to grow. For more information, see No Padding Allocation Strategy.storageEnginedocument Optional. Available for the WiredTiger storage engine only.
New in version 3.0.
Allows users to specify configuration to the storage engine on a per-collection basis when creating a collection. The value of the
storageEngineoption should take the following form:Storage engine configuration specified when creating collections are validated and logged to the oplog during replication to support replica sets with members that use different storage engines.
validatordocument Optional. Allows users to specify validation rules or expressions for the collection. For more information, see Document Validation.
New in version 3.2.
The
validatoroption takes a document that specifies the validation rules or expressions. You can specify the expressions using the same operators as the query operators with the exception of$geoNear,$near,$nearSphere,$text, and$where.Note
- Validation occurs during updates and inserts. Existing documents do not undergo validation checks until modification.
- You cannot specify a validator for collections in the
admin,local, andconfigdatabases. - You cannot specify a validator for
system.*collections.
validationLevelstring Optional. Determines how strictly MongoDB applies the validation rules to existing documents during an update.
New in version 3.2.
validationLevelDescription "off"No validation for inserts or updates. "strict"Default Apply validation rules to all inserts and all updates. "moderate"Apply validation rules to inserts and to updates on existing valid documents. Do not apply rules to updates on existing invalid documents. validationActionstring Optional. Determines whether to
erroron invalid documents or justwarnabout the violations but allow invalid documents to be inserted.New in version 3.2.
Important
Validation of documents only applies to those documents as determined by the
validationLevel.validationActionDescription "error"Default Documents must pass validation before the write occurs. Otherwise, the write operation fails. "warn"Documents do not have to pass validation. If the document fails validation, the write operation logs the validation failure. indexOptionDefaultsdocument Optional. Allows users to specify a default configuration for indexes when creating a collection.
The
indexOptionDefaultsoption accepts astorageEnginedocument, which should take the following form:Storage engine configuration specified when creating indexes are validated and logged to the oplog during replication to support replica sets with members that use different storage engines.
New in version 3.2.
viewOnstring The name of the source collection or view from which to create the view. The name is not the full namespace of the collection or view; i.e. does not include the database name and implies the same database as the view to create. You must create views in the same database as the source collection.
See also
db.createView().New in version 3.4.
pipelinearray An array that consists of the aggregation pipeline stage.
createcreates the view by applying the specifiedpipelineto theviewOncollection or view.The view definition is public; i.e.
db.getCollectionInfos()andexplainoperations on the view will include the pipeline that defines the view. As such, avoid referring directly to sensitive fields and values in view definitions.See also
db.createView().New in version 3.4.
collationSpecifies the default collation for the collection or the view.
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
The collation option has the following syntax:
When specifying collation, the
localefield is mandatory; all other collation fields are optional. For descriptions of the fields, see Collation Document.If you specify a collation at the collection level:
Indexes on that collection will be created with that collation unless the index creation operation explictly specify a different collation.
Operations on that collection use the collection’s default collation unless they explictly specify a different collation.
You cannot specify multiple collations for an operation. For example, you cannot specify different collations per field, or if performing a find with a sort, you cannot use one collation for the find and another for the sort.
If no collation is specified for the collection or for the operations, MongoDB uses the simple binary comparison used in prior versions for string comparisons.
For a view, if no collation is specified, the view’s default collation is the “simple” binary comparison collator. For a view on a collection, the view does not inherit the collection’s collation settings. For a view on another view, the to be created view must specify the same collation settings.
After you create the collection or the view, you cannot update its default collation.
For an example that specifies the default collation during the creation of a collection, see Specify Collation.
New in version 3.4.
The
db.createCollection()method and thedb.createView()method wrap thecreatecommand.
Considerations¶
The create command obtains a write lock on the
affected database and will block other operations until it has
completed. The write lock for this operation is typically short
lived. However, allocations for large capped collections may take
longer.
Access Control¶
If the deployment enforces
authentication/authorization,
create requires the following privileges:
| Required Privileges | |
|---|---|
| Create a non-capped collection |
|
| Create a capped collection |
|
| Create a view |
A user with |
The readWrite built in role includes the required
privileges. Alternatively, you can
create a custom role to support
create.
The following example uses the db.createUser() method to
create a user in the admin database with the readWrite
role on the inventory and employees database:
The created user can execute create on the specified databases.
For more examples of user creation, see Add Users.
Alternatively, you can add the required roles to an existing user
using db.grantRolesToUser(). For a tutorial on adding
privileges to an existing database user, see
Modify Access for an Existing User.
Examples¶
Create a Capped Collection¶
To create a capped collection limited to 64 kilobytes, issue the command in the following form:
Create a View¶
New in version 3.4.
To create a view using the create
command, use the following syntax:
or if specifying a collation:
For example, given a collection survey with the following documents:
The following operation creates a managementRatings view with the
_id, feedback.management, and department fields:
Important
The view definition is public; i.e. db.getCollectionInfos()
and explain operations on the view will include the pipeline that
defines the view. As such, avoid referring directly to sensitive fields
and values in view definitions.
See also
Specify Collation¶
You can specify collation at the collection or view level. For example, the following operation creates a collection, specifying a collation for the collection (See Collation Document for descriptions of the collation fields):
This collation will be used by indexes and operations that support
collation unless they explicitly specify a different collation. For
example, insert the following documents into myColl:
The following operation uses the collection’s collation:
The operation returns documents in the following order:
The same operation on a collection that uses simple binary collation (i.e. no specific collation set) returns documents in the following order:
Specify Storage Engine Options¶
New in version 3.0.
You can specify collection-specific storage engine configuration
options when you create a collection with
db.createCollection(). Consider the following operation:
This operation creates a new collection named users with a
specific configuration string that MongoDB will pass to the
wiredTiger storage engine. See the WiredTiger documentation of
collection level options
for specific wiredTiger options.