ArangoDB v3.4 reached End of Life (EOL) and is no longer supported.
This documentation is outdated. Please see the most recent version here: Latest Docs
Getting Information about a Collection
Return information about a collection
returns a collection
GET /_api/collection/{collection-name}
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Path Parameters
- collection-name (string, required): The name of the collection.
The result is an object describing the collection with the following attributes:
-
id: The identifier of the collection.
-
name: The name of the collection.
- status: The status of the collection as number.
- 1: new born collection
- 2: unloaded
- 3: loaded
- 4: in the process of being unloaded
- 5: deleted
- 6: loading
Every other status indicates a corrupted collection.
- type: The type of the collection as number.
- 2: document collection (normal case)
- 3: edges collection
- isSystem: If true then the collection is a system collection.
Responses
HTTP 404: If the collection-name is unknown, then a HTTP 404 is returned.
Read properties of a collection
reads the properties of the specified collection
GET /_api/collection/{collection-name}/properties
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Path Parameters
- collection-name (string, required): The name of the collection.
In addition to the above, the result will always contain the waitForSync attribute, and the doCompact, journalSize, and isVolatile attributes for the MMFiles storage engine. This is achieved by forcing a load of the underlying collection.
-
waitForSync: If true then creating, changing or removing documents will wait until the data has been synchronized to disk.
-
doCompact: Whether or not the collection will be compacted. This option is only present for the MMFiles storage engine.
-
journalSize: The maximal size setting for journals / datafiles in bytes. This option is only present for the MMFiles storage engine.
- keyOptions: JSON object which contains key generation options:
- type: specifies the type of the key generator. The currently available generators are traditional, autoincrement, uuid and padded.
- allowUserKeys: if set to true, then it is allowed to supply own key values in the _key attribute of a document. If set to false, then the key generator is solely responsible for generating keys and supplying own key values in the _key attribute of documents is considered an error.
- isVolatile: If true then the collection data will be kept in memory only and ArangoDB will not write or sync the data to disk. This option is only present for the MMFiles storage engine.
In a cluster setup, the result will also contain the following attributes:
-
numberOfShards: the number of shards of the collection.
-
shardKeys: contains the names of document attributes that are used to determine the target shard for documents.
-
replicationFactor: contains how many copies of each shard are kept on different DBServers.
-
shardingStrategy: the sharding strategy selected for the collection.
Responses
HTTP 400: If the collection-name is missing, then a HTTP 400 is returned.
HTTP 404: If the collection-name is unknown, then a HTTP 404 is returned.
Examples
Using an identifier:
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/68747/properties
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/68747/properties
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"waitForSync" : true,
"globallyUniqueId" : "h1118A17A2812/68747",
"id" : "68747",
"cacheEnabled" : false,
"isSystem" : false,
"keyOptions" : {
"allowUserKeys" : true,
"type" : "traditional",
"lastValue" : 0
},
"objectId" : "68746",
"name" : "products",
"status" : 3,
"statusString" : "loaded",
"type" : 2
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/68747/properties
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/68747/properties
x-content-type-options: nosniff
Using a name:
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/properties
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/properties
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"waitForSync" : true,
"globallyUniqueId" : "h1118A17A2812/68755",
"id" : "68755",
"cacheEnabled" : false,
"isSystem" : false,
"keyOptions" : {
"allowUserKeys" : true,
"type" : "traditional",
"lastValue" : 0
},
"objectId" : "68754",
"name" : "products",
"status" : 3,
"statusString" : "loaded",
"type" : 2
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/properties
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/properties
x-content-type-options: nosniff
Return number of documents in a collection
Counts the documents in a collection
GET /_api/collection/{collection-name}/count
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Path Parameters
- collection-name (string, required): The name of the collection.
In addition to the above, the result also contains the number of documents. Note that this will always load the collection into memory.
- count: The number of documents inside the collection.
Responses
HTTP 400: If the collection-name is missing, then a HTTP 400 is returned.
HTTP 404: If the collection-name is unknown, then a HTTP 404 is returned.
Examples
Requesting the number of documents:
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/count
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/count
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"waitForSync" : true,
"type" : 2,
"globallyUniqueId" : "h1118A17A2812/68529",
"count" : 100,
"id" : "68529",
"cacheEnabled" : false,
"objectId" : "68528",
"keyOptions" : {
"allowUserKeys" : true,
"type" : "traditional",
"lastValue" : 68732
},
"isSystem" : false,
"name" : "products",
"status" : 3,
"statusString" : "loaded"
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/count
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/count
x-content-type-options: nosniff
Return statistics for a collection
Fetch the statistics of a collection
GET /_api/collection/{collection-name}/figures
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Path Parameters
- collection-name (string, required): The name of the collection.
In addition to the above, the result also contains the number of documents and additional statistical information about the collection. Note: This will always load the collection into memory.
Note: collection data that is stored in the write-ahead log only is not reported in the results. When the write-ahead log is collected, documents might be added to journals and datafiles of the collection, which may modify the figures of the collection.
Additionally, the filesizes of collection and index parameter JSON files are not reported. These files should normally have a size of a few bytes each. Please also note that the fileSize values are reported in bytes and reflect the logical file sizes. Some filesystems may use optimizations (e.g. sparse files) so that the actual physical file size is somewhat different. Directories and sub-directories may also require space in the file system, but this space is not reported in the fileSize results.
That means that the figures reported do not reflect the actual disk usage of the collection with 100% accuracy. The actual disk usage of a collection is normally slightly higher than the sum of the reported fileSize values. Still the sum of the fileSize values can still be used as a lower bound approximation of the disk usage.
Responses
HTTP 200: Returns information about the collection:
-
count (integer): The number of documents currently present in the collection.
-
figures (object): metrics of the collection
-
alive (object): the currently active figures
-
count (integer): The number of currently active documents in all datafiles and journals of the collection. Documents that are contained in the write-ahead log only are not reported in this figure.
-
size (integer): The total size in bytes used by all active documents of the collection. Documents that are contained in the write-ahead log only are not reported in this figure.
-
-
dead (object): the items waiting to be swept away by the cleaner
-
count (integer): The number of dead documents. This includes document versions that have been deleted or replaced by a newer version. Documents deleted or replaced that are contained the write-ahead log only are not reported in this figure.
-
size (integer): The total size in bytes used by all dead documents.
-
deletion (integer): The total number of deletion markers. Deletion markers only contained in the write-ahead log are not reporting in this figure.
-
-
datafiles (object): Metrics regarding the datafiles
-
count (integer): The number of datafiles.
-
fileSize (integer): The total filesize of datafiles (in bytes).
-
-
journals (object): Metrics regarding the journal files
-
count (integer): The number of journal files.
-
fileSize (integer): The total filesize of all journal files (in bytes).
-
-
compactors (object):
-
count (integer): The number of compactor files.
-
fileSize (integer): The total filesize of all compactor files (in bytes).
-
-
readcache (object):
-
count (integer): The number of revisions of this collection stored in the document revisions cache.
-
size (integer): The memory used for storing the revisions of this collection in the document revisions cache (in bytes). This figure does not include the document data but only mappings from document revision ids to cache entry locations.
-
-
revisions (object):
-
count (integer): The number of revisions of this collection managed by the storage engine.
-
size (integer): The memory used for storing the revisions of this collection in the storage engine (in bytes). This figure does not include the document data but only mappings from document revision ids to storage engine datafile positions.
-
-
indexes (object):
-
count (integer): The total number of indexes defined for the collection, including the pre-defined indexes (e.g. primary index).
-
size (integer): The total memory allocated for indexes in bytes.
-
-
lastTick (integer): The tick of the last marker that was stored in a journal of the collection. This might be 0 if the collection does not yet have a journal.
-
uncollectedLogfileEntries (integer): The number of markers in the write-ahead log for this collection that have not been transferred to journals or datafiles.
-
documentReferences (integer): The number of references to documents in datafiles that JavaScript code currently holds. This information can be used for debugging compaction and unload issues.
-
waitingFor (string): An optional string value that contains information about which object type is at the head of the collection’s cleanup queue. This information can be used for debugging compaction and unload issues.
-
compactionStatus (object):
-
message (string): The action that was performed when the compaction was last run for the collection. This information can be used for debugging compaction issues.
-
time (string): The point in time the compaction for the collection was last executed. This information can be used for debugging compaction issues.
-
-
-
journalSize (integer): The maximal size of a journal or datafile in bytes.
HTTP 400: If the collection-name is missing, then a HTTP 400 is returned.
HTTP 404: If the collection-name is unknown, then a HTTP 404 is returned.
Examples
Using an identifier and requesting the figures of the collection (MMFiles storage engine):
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/figures
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"waitForSync" : false,
"type" : 2,
"statusString" : "loaded",
"status" : 3,
"name" : "products",
"id" : "123",
"globallyUniqueId" : "h5732961E970/123",
"isVolatile" : false,
"doCompact" : true,
"count" : 1,
"journalSize" : 33554432,
"figures" : {
"indexes" : {
"count" : 1,
"size" : 32128
},
"documentReferences" : 0,
"waitingFor" : "-",
"alive" : {
"count" : 1,
"size" : 80
},
"dead" : {
"count" : 0,
"size" : 0,
"deletion" : 0
},
"compactionStatus" : {
"message" : "skipped compaction because collection has no datafiles",
"time" : "2020-09-16T15:40:03Z",
"count" : 0,
"filesCombined" : 0,
"bytesRead" : 0,
"bytesWritten" : 0
},
"datafiles" : {
"count" : 0,
"fileSize" : 0
},
"journals" : {
"count" : 1,
"fileSize" : 33554432
},
"compactors" : {
"count" : 0,
"fileSize" : 0
},
"revisions" : {
"count" : 1,
"size" : 48192
},
"lastTick" : 132,
"uncollectedLogfileEntries" : 0
},
"indexBuckets" : 8,
"isSystem" : false,
"keyOptions" : {
"allowUserKeys" : true,
"type" : "traditional",
"lastValue" : 130
}
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/figures
x-content-type-options: nosniff
Using an identifier and requesting the figures of the collection (RocksDB storage engine):
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/figures
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"waitForSync" : false,
"type" : 2,
"globallyUniqueId" : "h1118A17A2812/68737",
"figures" : {
"indexes" : {
"count" : 1,
"size" : 60
},
"documentsSize" : 52,
"cacheInUse" : false,
"cacheSize" : 0,
"cacheUsage" : 0
},
"count" : 1,
"id" : "68737",
"cacheEnabled" : false,
"objectId" : "68736",
"keyOptions" : {
"allowUserKeys" : true,
"type" : "traditional",
"lastValue" : 68742
},
"isSystem" : false,
"name" : "products",
"statusString" : "loaded",
"status" : 3
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/figures
x-content-type-options: nosniff
Return collection revision id
Retrieve the collections revision id
GET /_api/collection/{collection-name}/revision
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Path Parameters
- collection-name (string, required): The name of the collection.
In addition to the above, the result will also contain the collection’s revision id. The revision id is a server-generated string that clients can use to check whether data in a collection has changed since the last revision check.
- revision: The collection revision id as a string.
Responses
HTTP 400: If the collection-name is missing, then a HTTP 400 is returned.
HTTP 404: If the collection-name is unknown, then a HTTP 404 is returned.
Examples
Retrieving the revision of a collection
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/revision
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/revision
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"waitForSync" : false,
"statusString" : "loaded",
"status" : 3,
"name" : "products",
"globallyUniqueId" : "h1118A17A2812/68763",
"revision" : "0",
"type" : 2,
"id" : "68763",
"cacheEnabled" : false,
"objectId" : "68762",
"keyOptions" : {
"allowUserKeys" : true,
"type" : "traditional",
"lastValue" : 0
},
"isSystem" : false
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/revision
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/revision
x-content-type-options: nosniff
Return checksum for the collection
returns a checksum for the specified collection
GET /_api/collection/{collection-name}/checksum
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Path Parameters
- collection-name (string, required): The name of the collection.
Query Parameters
-
withRevisions (boolean, optional): Whether or not to include document revision ids in the checksum calculation.
-
withData (boolean, optional): Whether or not to include document body data in the checksum calculation.
Will calculate a checksum of the meta-data (keys and optionally revision ids) and optionally the document data in the collection.
The checksum can be used to compare if two collections on different ArangoDB instances contain the same contents. The current revision of the collection is returned too so one can make sure the checksums are calculated for the same state of data.
By default, the checksum will only be calculated on the _key system attribute of the documents contained in the collection. For edge collections, the system attributes _from and _to will also be included in the calculation.
By setting the optional query parameter withRevisions to true, then revision ids (_rev system attributes) are included in the checksumming.
By providing the optional query parameter withData with a value of true, the user-defined document attributes will be included in the calculation too. Note: Including user-defined attributes will make the checksumming slower.
The response is a JSON object with the following attributes:
-
checksum: The calculated checksum as a number.
-
revision: The collection revision id as a string.
Note: this method is not available in a cluster.
Responses
HTTP 400: If the collection-name is missing, then a HTTP 400 is returned.
HTTP 404: If the collection-name is unknown, then a HTTP 404 is returned.
Examples
Retrieving the checksum of a collection:
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/checksum
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"isSystem" : false,
"type" : 2,
"checksum" : "16549918339900307835",
"revision" : "_bHcRFje---",
"globallyUniqueId" : "h1118A17A2812/68509",
"id" : "68509",
"status" : 3,
"name" : "products"
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/checksum
x-content-type-options: nosniff
Retrieving the checksum of a collection including the collection data, but not the revisions:
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum?withRevisions=false&withData=true
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/checksum
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"isSystem" : false,
"type" : 2,
"checksum" : "14920607184933506635",
"revision" : "_bHcRFkG---",
"globallyUniqueId" : "h1118A17A2812/68519",
"id" : "68519",
"status" : 3,
"name" : "products"
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum?withRevisions=false&withData=true
HTTP/1.1 OK
content-type: application/json; charset=utf-8
location: /_api/collection/products/checksum
x-content-type-options: nosniff
reads all collections
returns all collections
GET /_api/collection
Accessing collections by their numeric ID is deprecated from version 3.4.0 on. You should reference them via their names instead.
Query Parameters
- excludeSystem (boolean, optional): Whether or not system collections should be excluded from the result.
Returns an object with an attribute collections containing an array of all collection descriptions. The same information is also available in the names as an object with the collection names as keys.
By providing the optional query parameter excludeSystem with a value of true, all system collections will be excluded from the response.
Responses
HTTP 200: The list of collections
Examples
Return information about all collections:
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection
HTTP/1.1 OK
content-type: application/json; charset=utf-8
x-content-type-options: nosniff
{
"error" : false,
"code" : 200,
"result" : [
{
"id" : "45",
"name" : "_apps",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_apps"
},
{
"id" : "33",
"name" : "_queues",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_queues"
},
{
"id" : "10",
"name" : "_users",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_users"
},
{
"id" : "7",
"name" : "_graphs",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_graphs"
},
{
"id" : "19",
"name" : "_routing",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_routing"
},
{
"id" : "27",
"name" : "_aqlfunctions",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_aqlfunctions"
},
{
"id" : "16",
"name" : "_modules",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_modules"
},
{
"id" : "4",
"name" : "_iresearch_analyzers",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_iresearch_analyzers"
},
{
"id" : "51",
"name" : "_appbundles",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_appbundles"
},
{
"id" : "97",
"name" : "demo",
"status" : 3,
"type" : 2,
"isSystem" : false,
"globallyUniqueId" : "h1118A17A2812/97"
},
{
"id" : "71",
"name" : "_statisticsRaw",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_statisticsRaw"
},
{
"id" : "30",
"name" : "_frontend",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_frontend"
},
{
"id" : "77",
"name" : "_statistics",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_statistics"
},
{
"id" : "36",
"name" : "_jobs",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_jobs"
},
{
"id" : "83",
"name" : "_statistics15",
"status" : 3,
"type" : 2,
"isSystem" : true,
"globallyUniqueId" : "_statistics15"
},
{
"id" : "103",
"name" : "animals",
"status" : 3,
"type" : 2,
"isSystem" : false,
"globallyUniqueId" : "h1118A17A2812/103"
}
]
}
shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection
HTTP/1.1 OK
content-type: application/json; charset=utf-8
x-content-type-options: nosniff