This documentation page talks about the many aspects you can tune for improving the search experience for your users when it comes to search the document repository index.
Here are some examples of common changes of the Elasticsearch mapping.
All examples below should be done in a custom template that redefines the Elasticsearch mapping. This way the mapping reference stay on the Nuxeo configuration side. If you update the mapping directly on the Elasticsearch side your changes will be lost when Nuxeo is performing a full repository reindexing.
Customizing the Language
The Nuxeo code uses a full-text analyzer named fulltext
. This is an alias that points to the en_fulltext
analyzer by default.
To change it to the French analyzer for instance, move the following line into the fr_fulltext
:
"alias" : "fulltext"
If you dump the mapping from the Elasticsearch HTTP API (or using an Elasticsearch plug-in like head or kopf), you will see that alias are replaced by the target.
Making ILIKE Work - Case Insensitive Search
To do case insensitive search using an ILIKE
operation you need to declare your field as a multi_field
with a lowercase
index like this:
"my:field" : {
"type" : "multi_field",
"fields" : {
"my:field" : {
"include_in_all" : "true",
"type" : "string"
},
"lowercase" : {
"type": "string",
"analyzer" : "lowercase_analyzer"
}
}
}
Making STARTSWITH Work with a Custom Field
To use a STARTSWITH
operator on a field with a path pattern like a hierarchical vocabulary. Turn your field into a multi_field
and a children
sub field:
"my:field" : {
"type" : "multi_field",
"fields" : {
"my:field" : {
"index" : "not_analyzed",
"type" : "string"
},
"children" : {
"search_analyzer" : "keyword",
"index_analyzer" : "path_analyzer",
"type" : "string"
}
}
}
Adding a New Full-Text Field
To use the full-text search syntax on a custom field you need to create a multi_field
with a fulltext
index like this:
"my:text" : {
"type" : "multi_field",
"fields" : {
"my:text" : {
"include_in_all" : "true",
"type" : "string"
},
"fulltext" : {
"type": "string",
"analyzer" : "fulltext"
}
}
}
Note that if you:
- don't perform non fulltext search on this field
- don't use this field with a
IS NULL
orIS NOT NULL
operation - don't sort on this field
Then you can disable the default index on the field by adding after the second "my:text" : {
"index" : "no",
Excluding a Field from the Full-Text Search
Suppose you want to exclude my:secret
field from the ecm:fulltext
search:
"my:secret" : {
"type" : "string",
"include_in_all" : false
}
Use a NGram Index for Efficient Left Truncature Search
When you need to search with left truncature (or left and right truncatures) the NXQL syntax to use is LIKE '%foo%'
. This kind of query use an Elasticsearch wildcard search but the cost of the left truncature is high because the term index can not be used efficiently. Using an NGram index is a good alternative for such a case.
First you need to define an nGram
analyzer in your settings:
"analysis" : {
...
"tokenizer" : {
...
"ngram_tokenizer": {
"type": "nGram",
"min_gram": 3,
"max_gram": 12
},
...
"analyzer" : {
...
"ngram_analyzer": {
"type": "custom",
"filter": [
"lowercase"
],
"tokenizer": "ngram_tokenizer"
},
...
Then use it in the mapping:
"properties" : {
...
"dc:title" : {
"type" : "multi_field",
"fields" : {
"dc:title" : {
"index" : "not_analyzed",
"type" : "string"
},
"fulltext" : {
"boost": 2,
"type": "string",
"analyzer" : "fulltext"
},
"ngram": {
"type": "string",
"analyzer": "ngram_analyzer"
}
}
},
Now you can do an efficient version of:
SELECT * FROM Document WHERE dc:title ILIKE '%Foo%'
Using:
SELECT * FROM Document WHERE /*+ES: INDEX(dc:title.ngram) ANALYZER(lowercase_analyzer) OPERATOR(match) */ dc:title = 'Foo'"));
Index the Main Attachment Content for Use with the Common Operator
Extract from the course What's New in Nuxeo Platform LTS 2015? in Hyland University
Suppose you want to be able to search using the common operator on your documents' main attachment content. This Elasticsearch operator is interesting for two reasons:
- The common operator can be seen as an alternative to the full-text search. One notable difference is that it allows to search on terms that would have been removed by the full-text analyzer. If I absolutely want to search for the “Not Beyond Space Travel Agencies”, I’d like to be able to search for the “Not” keyword.
- The common operator is smart. It divides query terms between those which are rare into the index, and those which are commonly found into it. Rare terms will get a boost, common terms will be lowered. Let's say you have lots of contracts in your repository, and you search for "confidentiality clause". If both query terms were considered of same importance, most relevant results might be drowned. The common operator will understand that the term "confidentiality" is rare and boost it, while lowering the importance of the "clause" term, that is common. This will help you getting the most relevant results first.
To implement this use case:
- In the
analyzer
configuration, add an analyzer that will be used to index the main attachment's content:
"my_attachment_analyzer" : {
"type" : "custom",
"filter" : [
"word_delimiter_filter",
"lowercase",
"asciifolding"
],
"tokenizer" : "standard"
}
- In the
properties
configuration, update theecm:binarytext
field mapping configuration to the following:
"ecm:binarytext" : {
"type" : "multi_field",
"fields" : {
"ecm:binarytext" : {
"type" : "string",
"index" : "no",
"include_in_all" : true
},
"common" : {
"type": "string",
"analyzer" : "my_attachment_analyzer",
"include_in_all" : false
}
}
}
You can now configure hints in Nuxeo Studio using the common operator when querying on the ecm:binarytext.common
index.
Elasticsearch Indexing Logic Elasticsearch Setup How to Make a Page Provider or Content View Query Elasticsearch Index
Full-Text Queries Indexing and Query Indexing and Querying How-To Index