ArangoDB v3.9 reached End of Life (EOL) and is no longer supported.
This documentation is outdated. Please see the most recent version at docs.arangodb.com
Working with Indexes
Learn how to use different indexes efficiently by going through the ArangoDB Performance Course.
Index Identifiers and Handles
An index handle uniquely identifies an index in the database. It is a string and
consists of the collection name and an index identifier separated by a /
. The
index identifier part is a numeric value that is auto-generated by ArangoDB.
A specific index of a collection can be accessed using its index handle or index identifier as follows:
db.collection.index("<index-handle>");
db.collection.index("<index-identifier>");
db._index("<index-handle>");
For example: Assume that the index handle, which is stored in the _id
attribute of the index, is demo/362549736
and the index was created in a collection
named demo
. Then this index can be accessed as:
db.demo.index("demo/362549736");
Because the index handle is unique within the database, you can leave out the collection and use the shortcut:
db._index("demo/362549736");
An index may also be looked up by its name. Since names are only unique within a collection, rather than within the database, the lookup must also include the collection name.
db._index("demo/primary")
db.demo.index("primary")
Collection Methods
Listing all indexes of a collection
Returns information about the indexes:
getIndexes()
Returns an array of all indexes defined for the collection.
The indexes()
method is an alias for getIndexes()
.
Note that _key
implicitly has an index assigned to it.
Creating an index
Ensures that an index exists:
collection.ensureIndex(index-description)
Ensures that an index according to the index-description exists. A new index will be created if none exists with the given description.
The index-description must contain at least a type attribute. Other attributes may be necessary, depending on the index type.
type can be one of the following values:
"persistent"
: persistent (array) index, including vertex-centric index"ttl"
: time-to-live index"fulltext"
: fulltext index"geo"
: geo-spatial index, with one or two attributes"zkd"
: multi-dimensional index (experimental)
fields is an array of attribute paths, containing the document attributes (or sub-attributes) to be indexed. Some indexes allow using only a single path, and others allow multiple. If multiple attributes are used, their order matters.
The .
character denotes sub-attributes in attribute paths. Attributes with
literal .
in their name cannot be indexed. Attributes with the name _id
cannot be indexed either, neither as a top-level attribute nor as a sub-attribute.
If an attribute path contains an [*]
extension (e.g. friends[*].id
), it means
that the index attribute value is treated as an array and all array members are
indexed separately. This is possible with persistent
and inverted
indexes.
name can be a string. Index names are subject to the same character
restrictions as collection names. If omitted, a name will be auto-generated so
that it is unique with respect to the collection, e.g. idx_832910498
.
sparse can be true or false.
For persistent the sparsity can be controlled, fulltext and geo are sparse by definition.
unique can be true or false and is supported by persistent
Calling this method returns an index object. Whether or not the index object existed before the call is indicated in the return attribute isNewlyCreated.
deduplicate can be true or false and is supported by array indexes of type persistent. It controls whether inserting duplicate index values from the same document into a unique array index will lead to a unique constraint error or not. The default value is true, so only a single instance of each non-unique index value will be inserted into the index per document. Trying to insert a value into the index that already exists in the index will always fail, regardless of the value of this attribute.
estimates can be true or false and is supported by indexes of type persistent. This attribute controls whether index selectivity estimates are maintained for the index. Not maintaining index selectivity estimates can have a slightly positive impact on write performance. The downside of turning off index selectivity estimates will be that the query optimizer will not be able to determine the usefulness of different competing indexes in AQL queries when there are multiple candidate indexes to choose from. The estimates attribute is optional and defaults to true if not set. It will have no effect on indexes other than persistent (with hash and skiplist being mere aliases for persistent nowadays).
Examples
Dropping an index via a collection handle
Drops an index:
collection.dropIndex(index)
Drops the index. If the index does not exist, then false is returned. If the index existed and was dropped, then true is returned. Note that you cannot drop some special indexes (e.g. the primary index of a collection or the edge index of an edge collection).
collection.dropIndex(index-handle)
Same as above. Instead of an index an index handle can be given.
Load Indexes into Memory
Loads suitable indexes of this collection into memory.
collection.loadIndexesIntoMemory()
This function tries to cache index entries of this collection in main memory. Index lookups that can be served from the memory cache can be much faster than lookups not stored in the cache, so you can get a nice performance boost.
The function iterates over suitable indexes of the collection and stores the indexed values, not the entire document data, in memory. This is implemented for edge indexes only.
The function returns as soon as the index warmup has been scheduled. The index warmup may still be ongoing in the background, even after the function has already returned. As all suitable indexes are scanned, it may cause significant I/O activity and background load.
This function honors memory limits. If the indexes you want to load are smaller than your memory limit, this function guarantees that most index values are cached. If the index is larger than your memory limit, this function fills up values up to this limit and there is no way to control which indexes of the collection should have priority over others.
It is guaranteed at all times that the in-memory cache data is consistent with the stored index data.
arangosh> db.example.loadIndexesIntoMemory();
{
"result" : true
}
Database Methods
Fetching an index by handle
Finds an index:
db._index(index-handle)
Returns the index with index-handle or null if no such index exists.
Dropping an index via a database handle
Drops an index:
db._dropIndex(index)
Drops the index. If the index does not exist, then false is returned. If the index existed and was dropped, then true is returned.
db._dropIndex(index-handle)
Drops the index with index-handle.
Revalidating whether an index is used
So you’ve created an index, and since its maintenance isn’t for free, you definitely want to know whether your query can utilize it.
You can use explain to verify that a certain index is used:
(If you omit colors: false
you will get nice colors in ArangoShell.)