Working with Indexes
Learn how to use different indexes efficiently by going through theArangoDB Performance Course.
Index Identifiers and Handles
An index handle uniquely identifies an index in the database. It is a string andconsists of the collection name and an index identifier separated by a /
. Theindex 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 orindex 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 collectionnamed 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 thecollection and use the shortcut:
db._index("demo/362549736");
An index may also be looked up by its name. Since names are only unique withina collection, rather than within the database, the lookup must also include thecollection name.
db._index("demo/primary")
db.demo.index("primary")
Collection Methods
Listing all indexes of a collection
returns information about the indexesgetIndexes()
Returns an array of all indexes defined for the collection.Since ArangoDB 3.4, indexes()
is an alias for getIndexes()
.
Note that _key
implicitly has an index assigned to it.
- arangosh> db.test.ensureHashIndex("hashListAttribute",
- ........> "hashListSecondAttribute.subAttribute");
- arangosh> db.test.getIndexes();
Show execution results
- {
- "deduplicate" : true,
- "fields" : [
- "hashListAttribute",
- "hashListSecondAttribute.subAttribute"
- ],
- "id" : "test/73798",
- "isNewlyCreated" : true,
- "name" : "idx_1642473900108414976",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "hash",
- "unique" : false,
- "code" : 201
- }
- [
- {
- "fields" : [
- "_key"
- ],
- "id" : "test/0",
- "name" : "primary",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "primary",
- "unique" : true
- },
- {
- "deduplicate" : true,
- "fields" : [
- "skiplistAttribute"
- ],
- "id" : "test/73790",
- "name" : "idx_1642473900107366400",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : true
- },
- {
- "deduplicate" : true,
- "fields" : [
- "skiplistUniqueAttribute"
- ],
- "id" : "test/73794",
- "name" : "idx_1642473900107366401",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : true
- },
- {
- "deduplicate" : true,
- "fields" : [
- "hashListAttribute",
- "hashListSecondAttribute.subAttribute"
- ],
- "id" : "test/73798",
- "name" : "idx_1642473900108414976",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "hash",
- "unique" : false
- }
- ]
Hide execution results
Creating an index
Indexes should be created using the general method ensureIndex. Thismethod obsoletes the specialized index-specific methods ensureHashIndex,ensureSkiplist, ensureUniqueConstraint etc.ensures that an index existscollection.ensureIndex(index-description)
Ensures that an index according to the index-description exists. Anew 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:
- hash: hash index
- skiplist: skiplist index
- fulltext: fulltext index
- geo: geo index, with one or two attributesname can be a string. Index names are subject to the same characterrestrictions as collection names. If omitted, a name will be auto-generated sothat it is unique with respect to the collection, e.g.
idx_832910498
.
sparse can be true or false.
For hash, and skiplist the sparsity can be controlled, fulltext and _geo_are sparse by definition.
unique can be true or false and is supported by hash or skiplist
Calling this method returns an index object. Whether or not the indexobject existed before the call is indicated in the return attributeisNewlyCreated.
deduplicate can be true or false and is supported by array indexes oftype hash or skiplist. It controls whether inserting duplicate index valuesfrom the same document into a unique array index will lead to a unique constrainterror or not. The default value is true, so only a single instance of eachnon-unique index value will be inserted into the index per document. Trying toinsert a value into the index that already exists in the index will always fail,regardless of the value of this attribute.
Examples
- arangosh> db.test.ensureIndex({ type: "hash", fields: [ "a" ], sparse: true });
- arangosh> db.test.ensureIndex({ type: "hash", fields: [ "a", "b" ], unique: true });
Show execution results
- {
- "deduplicate" : true,
- "fields" : [
- "a"
- ],
- "id" : "test/73739",
- "isNewlyCreated" : true,
- "name" : "idx_1642473900054937600",
- "selectivityEstimate" : 1,
- "sparse" : true,
- "type" : "hash",
- "unique" : false,
- "code" : 201
- }
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "test/73743",
- "isNewlyCreated" : true,
- "name" : "idx_1642473900054937601",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "hash",
- "unique" : true,
- "code" : 201
- }
Hide execution results
Dropping an index via a collection handle
drops an indexcollection.dropIndex(index)
Drops the index. If the index does not exist, then false isreturned. If the index existed and was dropped, then true isreturned. Note that you cannot drop some special indexes (e.g. the primaryindex 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.
- arangosh> db.example.ensureSkiplist("a", "b");
- arangosh> var indexInfo = db.example.getIndexes();
- arangosh> indexInfo;
- arangosh> db.example.dropIndex(indexInfo[0])
- arangosh> db.example.dropIndex(indexInfo[1].id)
- arangosh> indexInfo = db.example.getIndexes();
Show execution results
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/73584",
- "isNewlyCreated" : true,
- "name" : "idx_1642473897699835904",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false,
- "code" : 201
- }
- [
- {
- "fields" : [
- "_key"
- ],
- "id" : "example/0",
- "name" : "primary",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "primary",
- "unique" : true
- },
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/73584",
- "name" : "idx_1642473897699835904",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false
- }
- ]
- false
- true
- [
- {
- "fields" : [
- "_key"
- ],
- "id" : "example/0",
- "name" : "primary",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "primary",
- "unique" : true
- }
- ]
Hide execution results
Load Indexes into Memory
Loads all indexes of this collection into Memory.collection.loadIndexesIntoMemory()
This function tries to cache all index entriesof this collection into the main memory.Therefore it iterates over all indexes of the collectionand stores the indexed values, not the entire document data,in memory.All lookups that could be found in the cache are much fasterthan lookups not stored in the cache so you get a nice performance boost.It is also guaranteed that the cache is consistent with the stored data.
For the time being this function is only useful on RocksDB storage engine,as in MMFiles engine all indexes are in memory anyways.
On RocksDB this function honors all memory limits, if the indexes you wantto load are smaller than your memory limit this function guarantees that mostindex values are cached.If the index is larger than your memory limit this function will fill up valuesup to this limit and for the time being there is no way to control which indexesof the collection should have priority over others.
- arangosh> db.example.loadIndexesIntoMemory();
Show execution results
- {
- "result" : true
- }
Hide execution results
Database Methods
Fetching an index by handle
finds an indexdb._index(index-handle)
Returns the index with index-handle or null if no such index exists.
- arangosh> db.example.ensureIndex({ type: "skiplist", fields: [ "a", "b" ] });
- arangosh> var indexInfo = db.example.getIndexes().map(function(x) { return x.id; });
- arangosh> indexInfo;
- arangosh> db._index(indexInfo[0])
- arangosh> db._index(indexInfo[1])
Show execution results
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/68943",
- "isNewlyCreated" : true,
- "name" : "idx_1642473881181618178",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false,
- "code" : 201
- }
- [
- "example/0",
- "example/68943"
- ]
- {
- "fields" : [
- "_key"
- ],
- "id" : "example/0",
- "name" : "primary",
- "sparse" : false,
- "type" : "primary",
- "unique" : true,
- "code" : 200
- }
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/68943",
- "name" : "idx_1642473881181618178",
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false,
- "code" : 200
- }
Hide execution results
Dropping an index via a database handle
drops an indexdb._dropIndex(index)
Drops the index. If the index does not exist, then false isreturned. If the index existed and was dropped, then true isreturned.
db._dropIndex(index-handle)
Drops the index with index-handle.
- arangosh> db.example.ensureIndex({ type: "skiplist", fields: [ "a", "b" ] });
- arangosh> var indexInfo = db.example.getIndexes();
- arangosh> indexInfo;
- arangosh> db._dropIndex(indexInfo[0])
- arangosh> db._dropIndex(indexInfo[1].id)
- arangosh> indexInfo = db.example.getIndexes();
Show execution results
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/74348",
- "isNewlyCreated" : true,
- "name" : "idx_1642473900915818496",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false,
- "code" : 201
- }
- [
- {
- "fields" : [
- "_key"
- ],
- "id" : "example/0",
- "name" : "primary",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "primary",
- "unique" : true
- },
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/74348",
- "name" : "idx_1642473900915818496",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false
- }
- ]
- false
- true
- [
- {
- "fields" : [
- "_key"
- ],
- "id" : "example/0",
- "name" : "primary",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "primary",
- "unique" : true
- }
- ]
Hide execution results
Revalidating whether an index is used
finds an index
So you’ve created an index, and since its maintainance isn’t for free,you definitely want to know whether your query can utilize it.
You can use explain to verify whether skiplists or hash indexes areused (if you omit colors: false
you will get nice colors in ArangoShell):
- arangosh> var explain = require("@arangodb/aql/explainer").explain;
- arangosh> db.example.ensureIndex({ type: "skiplist", fields: [ "a", "b" ] });
- arangosh> explain("FOR doc IN example FILTER doc.a < 23 RETURN doc", {colors:false});
Show execution results
- {
- "deduplicate" : true,
- "fields" : [
- "a",
- "b"
- ],
- "id" : "example/68957",
- "isNewlyCreated" : true,
- "name" : "idx_1642473881187909634",
- "selectivityEstimate" : 1,
- "sparse" : false,
- "type" : "skiplist",
- "unique" : false,
- "code" : 201
- }
- Query String:
- FOR doc IN example FILTER doc.a < 23 RETURN doc
- Execution plan:
- Id NodeType Est. Comment
- 1 SingletonNode 1 * ROOT
- 6 IndexNode 0 - FOR doc IN example /* skiplist index scan */
- 5 ReturnNode 0 - RETURN doc
- Indexes used:
- By Name Type Collection Unique Sparse Selectivity Fields Ranges
- 6 idx_1642473881187909634 skiplist example false false 100.00 % [ `a`, `b` ] (doc.`a` < 23)
- Optimization rules applied:
- Id RuleName
- 1 use-indexes
- 2 remove-filter-covered-by-index
- 3 remove-unnecessary-calculations-2
Hide execution results