Environment
- Elastic Search 2.4.0 on Elastic Cloud
- Cluster Size Mem:2GB Stor:48GB
- Access from node.js client. "elasticsearch": "^11.0.1
Question
I try index this JSON param. but very slow at first time.
response time is 10000~13000ms on average.
is it too deep nested?
can you guess why? please tell me if I mistake.
{
"name": "test-name",
"description": "test-description",
"integrations": {
"wechat":{
"Token": null
},
"facebook": {
"Token": null
}
},
"accountId": "8a4f260fc9c9449aa469bef9743a3a50",
"appId": "641023dc27fe4743b6982fd1e0937968",
"status": "active",
"createdAt": "2017-05-10T10:09:00.548Z",
"updatedAt": "2017-05-10T10:09:00.548Z",
"options": [],
"message": {
"title": null,
"text": null
},
"message2": {
"contents": [
{
"text": "text",
"contentType": "text"
}
]
},
"apiKey": "60099855997d4898a5a1944d963ff992"
}
thanks