ArangoSearch Analyzers

Analyzers parse input values and transform them into sets of sub-values,for example by breaking up text into words. If they are used in Views thenthe documents’ attribute values of the linked collections are used as inputand additional metadata is produced internally. The data can then be used forsearching and sorting to provide the most appropriate match for the specifiedconditions, similar to queries to web search engines.

Analyzers can be used on their own to tokenize and normalize strings in AQLqueries with the TOKENS() function.

How analyzers process values depends on their type and configuration.The configuration is comprised of type-specific properties and list of features.The features control the additional metadata to be generated to augment Viewindexes, to be able to rank results for instance.

Analyzers can be managed via an HTTP API and througha JavaScript module.

Value Handling

While most of the Analyzer functionality is geared towards text processing,there is no restriction to strings as input data type when using them throughViews – your documents could have attributes of any data type after all.

Strings are processed according to the Analyzer, whereas other primitive datatypes (null, true, false, numbers) are added to the index unchanged.

The elements of arrays are unpacked, processed and indexed individually,regardless of the level of nesting. That is, strings are processed by theconfigured Analyzer(s) and other primitive values are indexed as-is.

Objects, including any nested objects, are indexed as sub-attributes.This applies to sub-objects as well as objects in arrays. Only primitive valuesare added to the index, arrays and objects can not be searched for.

Also see:

  • SEARCH operation on how to query indexedvalues such as numbers and nested values
  • ArangoSearch Views for details about howcompound data types (arrays, objects) get indexed

Analyzer Names

Each Analyzer has a name for identification with the followingnaming conventions, similar to collection names:

  • The name must only consist of the letters a to z (both in lower andupper case), the numbers 0 to 9, underscore (_) and dash (-) symbols.This also means that any non-ASCII names are not allowed.
  • It must always start with a letter.
  • The maximum allowed length of a name is 64 bytes.
  • Analyzer names are case-sensitive.Custom Analyzers are stored per database, in a system collection _analyzers.The names get prefixed with the database name and two colons, e.g.myDB::customAnalyzer.This does not apply to the globally availablebuilt-in Analyzers, which are not stored in an_analyzers collection.

Custom Analyzers stored in the _system database can be referenced in queriesagainst other databases by specifying the prefixed name, e.g._system::customGlobalAnalyzer. Analyzers stored in databases other than_system can not be accessed from within another database however.

Analyzer Types

The currently implemented Analyzer types are:

  • identity: treat value as atom (no transformation)
  • delimiter: split into tokens at user-defined character
  • stem: apply stemming to the value as a whole
  • norm: apply normalization to the value as a whole
  • ngram: create n-grams from value with user-defined lengths
  • text: tokenize into words, optionally with stemming,normalization and stop-word filteringAvailable normalizations are case conversion and accent removal(conversion of characters with diacritical marks to the base characters).
Feature / AnalyzerIdentityN-gramDelimiterStemNormText
TokenizationNoNo(Yes)NoNoYes
StemmingNoNoNoYesNoYes
NormalizationNoNoNoNoYesYes

Analyzer Properties

The valid attributes/values for the properties are dependant on what _type_is used. For example, the delimiter type needs to know the desired delimitingcharacter(s), whereas the text type takes a locale, stop-words and more.

Identity

An Analyzer applying the identity transformation, i.e. returning the inputunmodified.

It does not support any properties and will ignore them.

Delimiter

An Analyzer capable of breaking up delimited text into tokens as perRFC 4180(without starting new records on newlines).

The properties allowed for this Analyzer are an object with the followingattributes:

  • delimiter (string): the delimiting character(s)

Stem

An Analyzer capable of stemming the text, treated as a single token,for supported languages.

The properties allowed for this Analyzer are an object with the followingattributes:

  • locale (string): a locale in the formatlanguage[_COUNTRY][.encoding][@variant] (square brackets denote optionalparts), e.g. "de.utf-8" or "en_US.utf-8". Only UTF-8 encoding ismeaningful in ArangoDB.

Norm

An Analyzer capable of normalizing the text, treated as a singletoken, i.e. case conversion and accent removal.

The properties allowed for this Analyzer are an object with the followingattributes:

  • locale (string): a locale in the formatlanguage[_COUNTRY][.encoding][@variant] (square brackets denote optionalparts), e.g. "de.utf-8" or "en_US.utf-8". Only UTF-8 encoding ismeaningful in ArangoDB.
  • accent (boolean, optional):
    • true to preserve accented characters (default)
    • false to convert accented characters to their base characters
  • case (string, optional):
    • "lower" to convert to all lower-case characters
    • "upper" to convert to all upper-case characters
    • "none" to not change character case (default)

N-gram

An Analyzer capable of producing n-grams from a specified input in a range ofmin..max (inclusive). Can optionally preserve the original input.

This Analyzer type can be used to implement substring matching.Note that it currently supports single-byte characters only.Multi-byte UTF-8 characters raise an Invalid UTF-8 sequence query error.

The properties allowed for this Analyzer are an object with the followingattributes:

  • min (number): unsigned integer for the minimum n-gram length
  • max (number): unsigned integer for the maximum n-gram length
  • preserveOriginal (boolean):
    • true to include the original value as well
    • false to produce the n-grams based on min and max onlyExample

With min = 4 and max = 5, the analyzer will produce the following n-gramsfor the input string "foobar":

  • "foobar" (if preserveOriginal is enabled)
  • "fooba"
  • "foob"
  • "oobar"
  • "ooba"
  • "obar"An input string "foo" will not produce any n-gram because it is shorterthan the min length of 4.

Text

An Analyzer capable of breaking up strings into individual words while alsooptionally filtering out stop-words, extracting word stems, applyingcase conversion and accent removal.

Stemming support is provided bySnowball.

The properties allowed for this Analyzer are an object with the followingattributes:

  • locale (string): a locale in the formatlanguage[_COUNTRY][.encoding][@variant] (square brackets denote optionalparts), e.g. "de.utf-8" or "en_US.utf-8". Only UTF-8 encoding ismeaningful in ArangoDB.
  • accent (boolean, optional):
    • true to preserve accented characters
    • false to convert accented characters to their base characters (default)
  • case (string, optional):
    • "lower" to convert to all lower-case characters (default)
    • "upper" to convert to all upper-case characters
    • "none" to not change character case
  • stemming (boolean, optional):
    • true to apply stemming on returned words (default)
    • false to leave the tokenized words as-is
  • stopwords (array, optional): an array of strings with words to omitfrom result. Default: load words from stopwordsPath. To disable stop-wordfiltering provide an empty array []. If both stopwords andstopwordsPath are provided then both word sources are combined.
  • stopwordsPath (string, optional): path with a language sub-directory(e.g. en for a locale en_US.utf-8) containing files with words to omit.Each word has to be on a separate line. Everything after the first whitespacecharacter on a line will be ignored and can be used for comments. The filescan be named arbitrarily and have any file extension (or none).

Default: if no path is provided then the value of the environment variableIRESEARCHTEXT_STOPWORD_PATH is used to determine the path, or if it isundefined then the current working directory is assumed. If the stopwordsattribute is provided then no stop-words are loaded from files, unless anexplicit _stopwordsPath is also provided.

Note that if the stopwordsPath can not be accessed, is missing languagesub-directories or has no files for a language required by an Analyzer,then the creation of a new Analyzer is refused. If such an issue is discovered for an existing Analyzer during startup then the server willabort with a fatal error.

Analyzer Features

The features of an Analyzer determine what term matching capabilities will beavailable and as such are only applicable in the context of ArangoSearch Views.

The valid values for the features are dependant on both the capabilities ofthe underlying type and the query filtering and sorting functions that theresult can be used with. For example the text type will producefrequency + norm + position and the PHRASE() AQL function requiresfrequency + position to be available.

Currently the following features are supported:

  • frequency: how often a term is seen, required for PHRASE()
  • norm: the field normalization factor
  • position: sequentially increasing term position, required for PHRASE().If present then the frequency feature is also required

Built-in Analyzers

There is a set of built-in analyzers which are available by default forconvenience and backward compatibility. They can not be removed.

The identity analyzer has the features frequency and norm.The analyzers of type text all tokenize strings with stemming enabled,no stopwords configured, case conversion set to lower, accent removalturned on and the features frequency, norm and position:

NameTypeLanguage
identityidentitynone
text_detextGerman
text_entextEnglish
text_estextSpanish
text_fitextFinnish
text_frtextFrench
text_ittextItalian
text_nltextDutch
text_notextNorwegian
text_pttextPortuguese
text_rutextRussian
text_svtextSwedish
text_zhtextChinese