Hi Team,
We are using Elasticsearch with dotnet client version as
PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.17.1"
We have an index in elastic where the mapping looks like below
"mappings": {
"dynamic": "false",
"properties": {
"FieldA": {
"type": "keyword"
},
"FieldB": {
"type": "boolean"
},
"FieldC": {
"type": "text"
},
"FieldD": {
"type": "float"
},
"FieldF": {
"type": "flattened"
},
"FieldG": {
"type": "text",
"fields": {
"pattern": {
"type": "text",
"analyzer": "pattern_analyzer"
}
},
"analyzer": "standard"
}
}
}
While indexing a document we are getting the below error
"exception": "Elastic.Transport.TransportException: Request failed to execute. Call: Status code 400 from: PUT /indexA-alias/_doc/abc123?version=7486156421021565048&version_type=external. ServerError: Type: document_parsing_exception Reason: \"[1:22532] failed to parse field [FieldF] of type [flattened] in document with id 'abc123'
FieldF is of type Flattened. And looks like there is a limitation which gives below error
CausedBy: \"Type: illegal_argument_exception Reason: \"Flattened field [FieldF] contains one immense field whose keyed encoding is longer than the allowed max length of 32766 bytes. Key length: 5, value length: 137627 for key starting with [a20pq]\"\"\n at Elastic.Transport.DistributedTransport`1.HandleTransportException(BoundConfiguration boundConfiguration, Exception clientException, TransportResponse response)\n at Elastic.Transport.DistributedTransport`1.FinalizeResponse[TResponse](Endpoint endpoint, BoundConfiguration boundConfiguration, PostData postData, RequestPipeline pipeline, DateTimeOffset startedOn, Int32 attemptedNodes, Auditor auditor, List`1 seenExceptions, TResponse response)\n at Elastic.Transport.DistributedTransport`1.RequestCoreAsync[TResponse](Boolean isAsync, EndpointPath path, PostData data, Action`1 configureActivity, IRequestConfiguration localConfiguration, CancellationToken cancellationToken)
What could be the possible solution here? We are using ES for our product's keyword searches where we have both exact and partial matches.
Thanks,
Moni