I try to create a canvas b using elastic SQL. but i always get failed when do query. i using this query
SELECT layanan,count(awbNumber) AS total_awb FROM "indexname" WHERE layanan is not null GROUP by layanan ORDER BY count(awbNumber) DESC LIMIT 10
and get this error
''''
{
"error": {
"root_cause": [
{
"type": "query_phase_execution_exception",
"reason": "Time exceeded"
}
],
"type": "search_phase_execution_exception",
"reason": "all shards failed",
"phase": "query",
"grouped": true,
"failed_shards": [
{
"shard": 0,
"index": "indexname",
"node": "LOC9qAEPQQ-7pK8x0zTblw",
"reason": {
"type": "query_phase_execution_exception",
"reason": "Time exceeded"
}
}
]
},
"status": 500
}
'''
what must i do to solve this problem?