Objects in arrays are not well supported

The document structure is something as below, then I saw a warning message on kibana UI: "Objects in arrays are not well supported". I wonder what's the impacts? Thanks!

{
"field1": "value1",
"field2": "value2",
"field3": {
"innerfield4": "value4",
"innerfield5": [
{
"type": "type1",
"name": "name1"
},
{
"type": "type2",
"name": "name2"
}
]
}
}

Hi @ahrtr,

See this document talking more about this. It's recommended to denormalize your data if possible.

1 Like

@chrisronline

Thanks for the info.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.