mCreate #
Creates multiple documents.
If a document identifier already exists, the creation fails for that document.
The number of documents that can be created by a single request is limited by the documentsWriteCount
server configuration (see the Configuring Kuzzle guide).
Query Syntax #
HTTP #
URL: http://kuzzle:7512/<index>/<collection>/_mCreate[?refresh=wait_for][&silent]
Method: POST
Body:
{
"documents": [
{
// Optional. If not provided, will be generated automatically.
"_id": "<documentId>",
"body": {
// document content
}
},
{
// Optional. If not provided, will be generated automatically.
"_id": "<anotherDocumentId>",
"body": {
// document content
}
}
]
}
Other protocols #
{
"index": "<index>",
"collection": "<collection>",
"controller": "document",
"action": "mCreate",
"body": {
"documents": [
{
// Optional. If not provided, will be generated automatically.
"_id": "<documentId>",
"body": {
"document": "body"
}
},
{
// Optional. If not provided, will be generated automatically.
"_id": "<anotherDocumentId>",
"body": {
"document": "body"
}
}
]
}
}
Kourou #
kourou document:mCreate <index> <collection> <body>
kourou document:mCreate <index> <collection> <body> -a silent=true
Arguments #
collection
: collection nameindex
: index name
Optional: #
refresh
: if set towait_for
, Kuzzle will not respond until the newly created documents are indexedsilent
: if set, then Kuzzle will not generate notificationsAvailable since 2.9.2strict
: if set, an error will occur if at least one document has not been createdAvailable since 2.11.0
Body properties #
documents
: an array of object. Each object describes a document to create, by exposing the following properties:_id
(optional): document identifier. If not provided, an unique identifier is automatically attributed to the new documentbody
: document content
Response #
Returns an object containing 2 arrays: successes
and errors
Each created document is an object of the successes
array with the following properties:
_id
: created document unique identifier_source
: document content_version
: version of the created document (should be1
)created
: a boolean telling whether a document is created (should betrue
)
Each errored document is an object of the errors
array with the following properties:
document
: original document that caused the errorstatus
: HTTP error status codereason
: human readable reason
If strict
mode is enabled, will rather return an error if at least one document has not been created.
Example #
{
"status": 200,
"error": null,
"index": "<index>",
"collection": "<collection>",
"action": "mCreate",
"controller": "document",
"requestId": "<unique request identifier>",
"result": {
"successes": [
{
"_id": "<documentId>",
"_source": {
// kuzzle metadata
"_kuzzle_info": {
"author": "<user kuid>",
"createdAt": <creation timestamp>,
"updatedAt": null,
"updater": null
},
// document content
},
"result": "created",
"status": 201,
"_version": 1
},
{
"_id": "<anotherDocumentId>",
"_source": {
// kuzzle metadata
"_kuzzle_info": {
"author": "<user kuid>",
"createdAt": <creation timestamp>,
"updatedAt": null,
"updater": null
},
// document content
},
"result": "created",
"status": 201,
"_version": 1
}
],
"errors": [
{
"document": {
"_id": "<document id>",
"body": {
// document content
}
},
"reason": "document already exists",
"status": 400
}
]
}
}
Edit this page on Github(opens new window)