ArangoDB v3.10 reached End of Life (EOL) and is no longer supported.
This documentation is outdated. Please see the most recent stable version.
Working with inverted indexes
Create an inverted index
collection-name, if
it does not already exist. The call expects an object containing the index
details.cache boolean
Enable this option to always cache the field normalization values in memory for all fields by default. This can improve the performance of scoring and ranking queries. Otherwise, these values are memory-mapped and it is up to the operating system to load them from disk into memory and to evict them from memory.
Normalization values are computed for fields which are processed with Analyzers that have the
"norm"feature enabled. These values are used to score fairer if the same tokens occur repeatedly, to emphasize these documents less.You can also enable this option to always cache auxiliary data used for querying fields that are indexed with Geo Analyzers in memory for all fields by default. This can improve the performance of geo-spatial queries.
Default:
falseThis property is available in the Enterprise Edition only.
See the
--arangosearch.columns-cache-limitstartup option to control the memory consumption of this cache. You can reduce the memory usage of the column cache in cluster deployments by only using the cache for leader shards, see the--arangosearch.columns-cache-only-leaderstartup option (introduced in v3.10.6).cleanupIntervalStep integer
Wait at least this many commits between removing unused files in the ArangoSearch data directory (default: 2, to disable use: 0). For the case where the consolidation policies merge segments often (i.e. a lot of commit+consolidate), a lower value causes a lot of disk space to be wasted. For the case where the consolidation policies rarely merge segments (i.e. few inserts/deletes), a higher value impacts performance without any added benefits.
Background: With every “commit” or “consolidate” operation, a new state of the inverted index’ internal data structures is created on disk. Old states/snapshots are released once there are no longer any users remaining. However, the files for the released states/snapshots are left on disk, and only removed by “cleanup” operation.
commitIntervalMsec integer
Wait at least this many milliseconds between committing inverted index data store changes and making documents visible to queries (default: 1000, to disable use: 0). For the case where there are a lot of inserts/updates, a higher value causes the index not to account for them and memory usage continues to grow until the commit. A lower value impacts performance, including the case where there are no or only a few inserts/updates because of synchronous locking, and it wastes disk space for each commit call.
Background: For data retrieval, ArangoSearch follows the concept of “eventually-consistent”, i.e. eventually all the data in ArangoDB will be matched by corresponding query expressions. The concept of ArangoSearch “commit” operations is introduced to control the upper-bound on the time until document addition/removals are actually reflected by corresponding query expressions. Once a “commit” operation is complete, all documents added/removed prior to the start of the “commit” operation will be reflected by queries invoked in subsequent ArangoDB transactions, in-progress ArangoDB transactions will still continue to return a repeatable-read state.
consolidationIntervalMsec integer
Wait at least this many milliseconds between applying
consolidationPolicyto consolidate the inverted index data store and possibly release space on the filesystem (default: 1000, to disable use: 0). For the case where there are a lot of data modification operations, a higher value could potentially have the data store consume more space and file handles. For the case where there are a few data modification operations, a lower value impacts performance due to no segment candidates being available for consolidation.Background: For data modification, ArangoSearch follows the concept of a “versioned data store”. Thus old versions of data may be removed once there are no longer any users of the old data. The frequency of the cleanup and compaction operations are governed by
consolidationIntervalMsecand the candidates for compaction are selected viaconsolidationPolicy.consolidationPolicy object
The consolidation policy to apply for selecting which segments should be merged (default: {}).
Background: With each ArangoDB transaction that inserts documents, one or more ArangoSearch-internal segments get created. Similarly, for removed documents, the segments that contain such documents have these documents marked as ‘deleted’. Over time, this approach causes a lot of small and sparse segments to be created. A “consolidation” operation selects one or more segments and copies all of their valid documents into a single new segment, thereby allowing the search algorithm to perform more optimally and for extra file handles to be released once old segments are no longer used.
type string
The segment candidates for the “consolidation” operation are selected based upon several possible configurable formulas as defined by their types. The supported types are:
"tier"(default): consolidate based on segment byte size and live document count as dictated by the customization attributes.
fields* array of objects
An array of attribute paths. You can use strings to index the fields with the default options, or objects to specify options for the fields (with the attribute path in the
nameproperty), or a mix of both.cache boolean
Enable this option to always cache the field normalization values in memory for this specific field. This can improve the performance of scoring and ranking queries. Otherwise, these values are memory-mapped and it is up to the operating system to load them from disk into memory and to evict them from memory.
Normalization values are computed for fields which are processed with Analyzers that have the
"norm"feature enabled. These values are used to score fairer if the same tokens occur repeatedly, to emphasize these documents less.You can also enable this option to always cache auxiliary data used for querying fields that are indexed with Geo Analyzers in memory for this specific field. This can improve the performance of geo-spatial queries.
Default: the value defined by the top-level
cacheoption.This property is available in the Enterprise Edition only.
See the
--arangosearch.columns-cache-limitstartup option to control the memory consumption of this cache. You can reduce the memory usage of the column cache in cluster deployments by only using the cache for leader shards, see the--arangosearch.columns-cache-only-leaderstartup option (introduced in v3.10.6).features array of strings
A list of Analyzer features to use for this field. You can set this option to overwrite what features are enabled for the
analyzer. Possible features:"frequency""norm""position""offset"
Default: the features as defined by the Analyzer itself, or inherited from the top-level
featuresoption if theanalyzeroption adjacent to this option is not set.includeAllFields boolean
This option only applies if you use the inverted index in a
search-aliasViews.If set to
true, then all sub-attributes of this field are indexed, excluding any sub-attributes that are configured separately by other elements in thefieldsarray (and their sub-attributes). Theanalyzerandfeaturesproperties apply to the sub-attributes.If set to
false, then sub-attributes are ignored.Default: the value defined by the top-level
includeAllFieldsoption.nested array of objects
Index the specified sub-objects that are stored in an array. Other than with the
fieldsproperty, the values get indexed in a way that lets you query for co-occurring values. For example, you can search the sub-objects and all the conditions need to be met by a single sub-object instead of across all of them.This property is available in the Enterprise Edition only.
cache boolean
Enable this option to always cache the field normalization values in memory for this specific nested field. This can improve the performance of scoring and ranking queries. Otherwise, these values are memory-mapped and it is up to the operating system to load them from disk into memory and to evict them from memory.
Normalization values are computed for fields which are processed with Analyzers that have the
"norm"feature enabled. These values are used to score fairer if the same tokens occur repeatedly, to emphasize these documents less.You can also enable this option to always cache auxiliary data used for querying fields that are indexed with Geo Analyzers in memory for this specific nested field. This can improve the performance of geo-spatial queries.
Default: the value defined by the top-level
cacheoption.This property is available in the Enterprise Edition only.
See the
--arangosearch.columns-cache-limitstartup option to control the memory consumption of this cache. You can reduce the memory usage of the column cache in cluster deployments by only using the cache for leader shards, see the--arangosearch.columns-cache-only-leaderstartup option (introduced in v3.10.6).features array of strings
A list of Analyzer features to use for this field. You can set this option to overwrite what features are enabled for the
analyzer. Possible features:"frequency""norm""position""offset"
Default: the features as defined by the Analyzer itself, or inherited from the parent field’s or top-level
featuresoption if noanalyzeroption is set at a deeper level, closer to this option.searchField boolean
This option only applies if you use the inverted index in a
search-aliasViews.You can set the option to
trueto get the same behavior as witharangosearchViews regarding the indexing of array values for this field. If enabled, both, array and primitive values (strings, numbers, etc.) are accepted. Every element of an array is indexed according to thetrackListPositionsoption.If set to
false, it depends on the attribute path. If it explicitly expands an array ([*]), then the elements are indexed separately. Otherwise, the array is indexed as a whole, but onlygeopointandaqlAnalyzers accept array inputs. You cannot use an array expansion ifsearchFieldis enabled.Default: the value defined by the top-level
searchFieldoption.
searchField boolean
This option only applies if you use the inverted index in a
search-aliasViews.You can set the option to
trueto get the same behavior as witharangosearchViews regarding the indexing of array values for this field. If enabled, both, array and primitive values (strings, numbers, etc.) are accepted. Every element of an array is indexed according to thetrackListPositionsoption.If set to
false, it depends on the attribute path. If it explicitly expands an array ([*]), then the elements are indexed separately. Otherwise, the array is indexed as a whole, but onlygeopointandaqlAnalyzers accept array inputs. You cannot use an array expansion ifsearchFieldis enabled.Default: the value defined by the top-level
searchFieldoption.trackListPositions boolean
This option only applies if you use the inverted index in a
search-aliasViews, andsearchFieldneeds to betrue.If set to
true, then track the value position in arrays for array values. For example, when querying a document like{ attr: [ "valueX", "valueY", "valueZ" ] }, you need to specify the array element, e.g.doc.attr[1] == "valueY".If set to
false, all values in an array are treated as equal alternatives. You don’t specify an array element in queries, e.g.doc.attr == "valueY", and all elements are searched for a match.Default: the value defined by the top-level
trackListPositionsoption.
includeAllFields boolean
This option only applies if you use the inverted index in a
search-aliasViews.If set to
true, then all document attributes are indexed, excluding any sub-attributes that are configured in thefieldsarray (and their sub-attributes). Theanalyzerandfeaturesproperties apply to the sub-attributes.Default:
falseUsingincludeAllFieldsfor a lot of attributes in combination with complex Analyzers may significantly slow down the indexing process.primaryKeyCache boolean
Enable this option to always cache the primary key column in memory. This can improve the performance of queries that return many documents. Otherwise, these values are memory-mapped and it is up to the operating system to load them from disk into memory and to evict them from memory.
Default:
falseSee the
--arangosearch.columns-cache-limitstartup option to control the memory consumption of this cache. You can reduce the memory usage of the column cache in cluster deployments by only using the cache for leader shards, see the--arangosearch.columns-cache-only-leaderstartup option (introduced in v3.10.6).primarySort object
You can define a primary sort order to enable an AQL optimization. If a query iterates over all documents of a collection, wants to sort them by attribute values, and the (left-most) fields to sort by, as well as their sorting direction, match with the
primarySortdefinition, then theSORToperation is optimized away.cache boolean
Enable this option to always cache the primary sort columns in memory. This can improve the performance of queries that utilize the primary sort order. Otherwise, these values are memory-mapped and it is up to the operating system to load them from disk into memory and to evict them from memory.
Default:
falseThis property is available in the Enterprise Edition only.
See the
--arangosearch.columns-cache-limitstartup option to control the memory consumption of this cache. You can reduce the memory usage of the column cache in cluster deployments by only using the cache for leader shards, see the--arangosearch.columns-cache-only-leaderstartup option (introduced in v3.10.6).
searchField boolean
This option only applies if you use the inverted index in a
search-aliasViews.You can set the option to
trueto get the same behavior as witharangosearchViews regarding the indexing of array values as the default. If enabled, both, array and primitive values (strings, numbers, etc.) are accepted. Every element of an array is indexed according to thetrackListPositionsoption.If set to
false, it depends on the attribute path. If it explicitly expands an array ([*]), then the elements are indexed separately. Otherwise, the array is indexed as a whole, but onlygeopointandaqlAnalyzers accept array inputs. You cannot use an array expansion ifsearchFieldis enabled.Default:
falsestoredValues array of objects
The optional
storedValuesattribute can contain an array of objects with paths to additional attributes to store in the index. These additional attributes cannot be used for index lookups or for sorting, but they can be used for projections. This allows an index to fully cover more queries and avoid extra document lookups.You may use the following shorthand notations on index creation instead of an array of objects. The default compression and cache settings are used in this case:
An array of strings, like
["attr1", "attr2"], to place each attribute into a separate column of the index (introduced in v3.10.3).An array of arrays of strings, like
[["attr1", "attr2"]], to place the attributes into a single column of the index, or[["attr1"], ["attr2"]]to place each attribute into a separate column. You can also mix it with the full form:[ ["attr1"], ["attr2", "attr3"], { "fields": ["attr4", "attr5"], "cache": true } ]
cache boolean
Enable this option to always cache stored values in memory. This can improve the query performance if stored values are involved. Otherwise, these values are memory-mapped and it is up to the operating system to load them from disk into memory and to evict them from memory.
Default:
falseThis property is available in the Enterprise Edition only.
See the
--arangosearch.columns-cache-limitstartup option to control the memory consumption of this cache. You can reduce the memory usage of the column cache in cluster deployments by only using the cache for leader shards, see the--arangosearch.columns-cache-only-leaderstartup option (introduced in v3.10.6).
trackListPositions boolean
This option only applies if you use the inverted index in a
search-aliasViews, andsearchFieldneeds to betrue.If set to
true, then track the value position in arrays for array values. For example, when querying a document like{ attr: [ "valueX", "valueY", "valueZ" ] }, you need to specify the array element, e.g.doc.attr[1] == "valueY".If set to
false, all values in an array are treated as equal alternatives. You don’t specify an array element in queries, e.g.doc.attr == "valueY", and all elements are searched for a match.writebufferSizeMax integer
Maximum memory byte size per writer (segment) before a writer (segment) flush is triggered.
0value turns off this limit for any writer (buffer) and data is flushed periodically based on the value defined for the flush thread (ArangoDB server startup option).0value should be used carefully due to high potential memory consumption (default: 33554432, use 0 to disable)
Examples
Creating an inverted index:
curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products
{
"type": "inverted",
"fields": [
"a",
{
"name": "b",
"analyzer": "text_en"
}
]
}Show output
HTTP/1.1 201 Created
content-type: application/json
cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0
connection: Keep-Alive
content-length: 754
content-security-policy: frame-ancestors 'self'; form-action 'self';
expires: 0
pragma: no-cache
server: ArangoDB
strict-transport-security: max-age=31536000 ; includeSubDomains
x-arango-queue-time-seconds: 0.000000
x-content-type-options: nosniff
{
"analyzer" : "identity",
"cleanupIntervalStep" : 2,
"commitIntervalMsec" : 1000,
"consolidationIntervalMsec" : 1000,
"consolidationPolicy" : {
"type" : "tier",
"segmentsBytesFloor" : 2097152,
"segmentsBytesMax" : 5368709120,
"segmentsMax" : 10,
"segmentsMin" : 1,
"minScore" : 0
},
"features" : [
"frequency",
"norm"
],
"fields" : [
{
"name" : "a"
},
{
"features" : [
"frequency",
"position",
"norm"
],
"analyzer" : "text_en",
"name" : "b"
}
],
"id" : "products/70961",
"includeAllFields" : false,
"isNewlyCreated" : true,
"name" : "idx_1795421227091755009",
"primarySort" : {
"fields" : [ ],
"compression" : "lz4"
},
"searchField" : false,
"sparse" : true,
"storedValues" : [ ],
"trackListPositions" : false,
"type" : "inverted",
"unique" : false,
"version" : 1,
"writebufferActive" : 0,
"writebufferIdle" : 64,
"writebufferSizeMax" : 33554432,
"error" : false,
"code" : 201
}