我在MySQL中有以下查询,
SELECT service, COUNT(*) as count, MAX(timestamp) as ts, GROUP_CONCAT(id ORDER BY timestamp DESC) as id_list FROM logs GROUP_BY service ORDER BY ts DESC
有谁能告诉我如何在elasticsearch中编写相同的查询?
type
和service
是一个字符串。
基本上,我想按字段分组,并将字段中的所有ID作为数组中的数组。