Hi @leandrojmp,
I'm not getting any error, the problem is that the field is being ignored for some of my documents, even if they have the format I've specified in the mappings.
See below example:
1 - For below document CREATION_TIME field is being ignored.
> {
> "_index" : "tta-test",
> "_type" : "_doc",
> "_id" : "r0waWoYBVHApIjHukmqM",
> "_score" : 0.0,
> "_ignored" : [
> "CREATION_TIME"
> ],
> "_source" : {
> "ID" : 1738,
> "ADDED_TO_TEAM_TIME" : "Wed, 20 Apr 2022 14:05:21 GMT",
> "REVOKED_BY_NAME" : null,
> "REVOKED_FROM_TEAM_TIME" : null,
> "function_within_team_label" : "Team Member",
> "CREATION_TIME" : "Wed, 20 Apr 2022 14:05:23 GMT",
> "MODIFIED_BY_PRID" : null,
> "MODIFICATION_TIME" : null,
> "DELETED_BY_PRID" : null,
> "DELETION_TIME" : null,
> "IS_DELETED" : false,
> }
> },
- Below document is being processed without any issue.
{
"_index" : "tta-test",
"_type" : "_doc",
"_id" : "n0waWoYBVHApIjHukmqM",
"_score" : 1.0,
"_source" : {
"ID" : 320,
"ADDED_TO_TEAM_TIME" : "Wed, 25 Aug 2021 11:51:00 GMT",
"REVOKED_BY_PRID" : null,
"REVOKED_BY_NAME" : null,
"REVOKED_FROM_TEAM_TIME" : null,
"function_within_team_label" : "Team Lead",
"CREATION_TIME" : "Wed, 25 Aug 2021 11:52:25 GMT",
"MODIFIED_BY_PRID" : null,
"MODIFICATION_TIME" : null,
"DELETED_BY_PRID" : null,
"DELETION_TIME" : null,
"IS_DELETED" : false,
}
}