-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 10.10
-
Fix Version/s: 10.10-HF11, 11.1, 2021.0
-
Component/s: Elasticsearch
-
Release Notes Summary:The aggregates fully supports complex fields.
-
Tags:
-
Backlog priority:800
-
Sprint:nxplatform 11.1.13
-
Story Points:3
In the class AggregateJsonWriter, a non system field is retrieved with
field = schemaManager.getField(fieldName);
However fieldName is a the sanitized version of the field defined on the aggregate.
Because of AggregateEsBase#getField, the "/" character is replaced by "." to have an ES-compatible field name.
But the schemaManager cannot retrieve a field from this sanitized name.
The following warn is then logged
Could not resolve field file:content.mime-type for aggregate system_mimetype_agg
- is caused by
-
NXP-15923 Fix aggregate count computation on complex properties
- Resolved