ArangoDB v3.8 reached End of Life (EOL) and is no longer supported.

This documentation is outdated. Please see the most recent version at docs.arangodb.com

Persistent indexes

It is possible to define a persistent index on one or more attributes (or paths) of documents. The index is then used in queries to locate documents within a given range. If the index is declared unique, then no two documents are allowed to have the same set of attribute values.

Creating a new document or updating a document will fail if the uniqueness is violated. If the index is declared sparse, a document will be excluded from the index and no uniqueness checks will be performed if any index attribute value is not set or has a value of null.

Accessing Persistent Indexes from the Shell

ensures that a unique persistent index exists collection.ensureIndex({ type: "persistent", fields: [ "field1", ..., "fieldn" ], unique: true })

Creates a unique persistent index on all documents using field1, … fieldn as attribute paths. At least one attribute path has to be given. The index will be non-sparse by default.

All documents in the collection must differ in terms of the indexed attributes. Creating a new document or updating an existing document will will fail if the attribute uniqueness is violated.

To create a sparse unique index, set the sparse attribute to true:

collection.ensureIndex({ type: "persistent", fields: [ "field1", ..., "fieldn" ], unique: true, sparse: true })

In a sparse index all documents will be excluded from the index that do not contain at least one of the specified index attributes or that have a value of null in any of the specified index attributes. Such documents will not be indexed, and not be taken into account for uniqueness checks.

In a non-sparse index, these documents will be indexed (for non-present indexed attributes, a value of null will be used) and will be taken into account for uniqueness checks.

In case that the index was successfully created, an object with the index details, including the index-identifier, is returned.

arangosh> db.ids.ensureIndex({ type: "persistent", fields: [ "myId" ], unique: true });
arangosh> db.ids.save({ "myId": 123 });
arangosh> db.ids.save({ "myId": 456 });
arangosh> db.ids.save({ "myId": 789 });
arangosh> db.ids.save({ "myId": 123 });
Show execution results
Hide execution results
{ 
  "deduplicate" : true, 
  "estimates" : true, 
  "fields" : [ 
    "myId" 
  ], 
  "id" : "ids/72003", 
  "isNewlyCreated" : true, 
  "name" : "idx_1761718541865713665", 
  "selectivityEstimate" : 1, 
  "sparse" : false, 
  "type" : "persistent", 
  "unique" : true, 
  "code" : 201 
}
{ 
  "_id" : "ids/72007", 
  "_key" : "72007", 
  "_rev" : "_fw2Y2IK---" 
}
{ 
  "_id" : "ids/72009", 
  "_key" : "72009", 
  "_rev" : "_fw2Y2IK--_" 
}
{ 
  "_id" : "ids/72011", 
  "_key" : "72011", 
  "_rev" : "_fw2Y2IK--A" 
}
[ArangoError 1210: unique constraint violated - in index idx_1761718541865713665 of type persistent over 'myId'; conflicting key: 72007]
arangosh> db.ids.ensureIndex({ type: "persistent", fields: [ "name.first", "name.last" ], unique: true });
arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "hansen" }});
arangosh> db.ids.save({ "name" : { "first" : "jens", "last": "jensen" }});
arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "jensen" }});
arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "hansen" }});
Show execution results
Hide execution results
{ 
  "deduplicate" : true, 
  "estimates" : true, 
  "fields" : [ 
    "name.first", 
    "name.last" 
  ], 
  "id" : "ids/71984", 
  "isNewlyCreated" : true, 
  "name" : "idx_1761718541862567937", 
  "selectivityEstimate" : 1, 
  "sparse" : false, 
  "type" : "persistent", 
  "unique" : true, 
  "code" : 201 
}
{ 
  "_id" : "ids/71988", 
  "_key" : "71988", 
  "_rev" : "_fw2Y2I----" 
}
{ 
  "_id" : "ids/71990", 
  "_key" : "71990", 
  "_rev" : "_fw2Y2I---_" 
}
{ 
  "_id" : "ids/71992", 
  "_key" : "71992", 
  "_rev" : "_fw2Y2I---A" 
}
[ArangoError 1210: unique constraint violated - in index idx_1761718541862567937 of type persistent over 'name.first, name.last'; conflicting key: 71988]

ensures that a non-unique persistent index exists collection.ensureIndex({ type: "persistent", fields: [ "field1", ..., "fieldn" ] })

Creates a non-unique persistent index on all documents using field1, … fieldn as attribute paths. At least one attribute path has to be given. The index will be non-sparse by default.

To create a sparse unique index, set the sparse attribute to true.

In case that the index was successfully created, an object with the index details, including the index-identifier, is returned.

arangosh> db.names.ensureIndex({ type: "persistent", fields: [ "first" ] });
arangosh> db.names.save({ "first" : "Tim" });
arangosh> db.names.save({ "first" : "Tom" });
arangosh> db.names.save({ "first" : "John" });
arangosh> db.names.save({ "first" : "Tim" });
arangosh> db.names.save({ "first" : "Tom" });
Show execution results
Hide execution results
{ 
  "deduplicate" : true, 
  "estimates" : true, 
  "fields" : [ 
    "first" 
  ], 
  "id" : "names/71752", 
  "isNewlyCreated" : true, 
  "name" : "idx_1761718541847887872", 
  "selectivityEstimate" : 1, 
  "sparse" : false, 
  "type" : "persistent", 
  "unique" : false, 
  "code" : 201 
}
{ 
  "_id" : "names/71756", 
  "_key" : "71756", 
  "_rev" : "_fw2Y2HC--_" 
}
{ 
  "_id" : "names/71758", 
  "_key" : "71758", 
  "_rev" : "_fw2Y2HC--A" 
}
{ 
  "_id" : "names/71760", 
  "_key" : "71760", 
  "_rev" : "_fw2Y2HC--B" 
}
{ 
  "_id" : "names/71762", 
  "_key" : "71762", 
  "_rev" : "_fw2Y2HG---" 
}
{ 
  "_id" : "names/71764", 
  "_key" : "71764", 
  "_rev" : "_fw2Y2HG--_" 
}

Query by example using a persistent index

constructs a query-by-example using a persistent index collection.byExample(example)

Selects all documents from the collection that match the specified example and returns a cursor. A persistent index will be used if present.

You can use toArray, next, or hasNext to access the result. The result can be limited using the skip and limit operator.

An attribute name of the form a.b is interpreted as attribute path, not as attribute. If you use

{ "a" : { "c" : 1 } }

as example, then you will find all documents, such that the attribute a contains a document of the form {c : 1 }. For example the document

{ "a" : { "c" : 1 }, "b" : 1 }

will match, but the document

{ "a" : { "c" : 1, "b" : 1 } }

will not.

However, if you use

{ "a.c" : 1 },

then you will find all documents, which contain a sub-document in a that has an attribute c of value 1. Both the following documents

{ "a" : { "c" : 1 }, "b" : 1 }

and

{ "a" : { "c" : 1, "b" : 1 } }

will match.

Persistent Indexes and Server Language

The order of index entries in persistent indexes adheres to the configured server language. If, however, the server is restarted with a different language setting as when the persistent index was created, not all documents may be returned anymore and the sort order of those which are returned can be wrong (whenever the persistent index is consulted).

To fix persistent indexes after a language change, delete and re-create them.