ElasticSearch의'distinct','count','group by'

3147 단어 ElasticSearch

1 - distinct

SELECT DISTINCT(userName) FROM table WHERE userId = 3;
{
  "query": {
    "term": {
      "userId ": 3
    }
  },
  "collapse": {
    "field": "userName"
  }
}
{
  ...
  "hits": {
    "hits": [
      {
        "_index": "test01",
        "_type": "keywords",
        "_source": {
          "userId": "1",
          "userName": "huahua"
        },
        "fields": {
          "pk": [
            "1"
          ]
        }
      }
    ]
  }
}

요약:collapse 필드를 사용하면 검색 결과에서 [hits]에 [fields] 필드가 나타날 것입니다. 중복된 user_가 포함되어 있습니다id

2 - count + distinct

SELECT COUNT(DISTINCT(userName)) FROM table WHERE userId= 3;
{
  "query": {
    "term": {
      "userId": 3
    }
  },
  "aggs": {
    "count": {
      "cardinality": {
        "field": "userName"
      }
    }
  }
}
{
  ...
  "hits": {
  ...
  },
  "aggregations": {
    "count": {
      "value": 121
    }
  }
}

요약:aggs에서cardinality의 필드는distinct가 필요한 필드를 나타냅니다.

3 - count + group by

SELECT COUNT(userName) FROM table GROUP BY userId;
{
  "aggs": {
    "user_count": {
      "terms": {
        "field": "userId"
      }
    }
  }
}
{
  ...
  "hits": {
    ...
  },
  "aggregations": {
    "user_type": {
      ...
      "buckets": [
        {
          "key": 4,
          "doc_count": 500
        },
        {
          "key": 3,
          "doc_count": 200
        }
      ]
    }
  }
}

요약:aggs 중terms의 필드는gruopby가 필요한 필드를 나타냅니다.

4 - count + distinct + group by

SELECT COUNT(DISTINCT(userName)) FROM table GROUP BY userId;
{
  "aggs": {
    "unique_count": {
      "terms": {
        "field": "userId"
      },
      "aggs": {
        "count": {
          "cardinality": {
            "field": "userName"
          }
        }
      }
    }
  }
}
{
  ...
  "hits": {
    ...
  },
  "aggregations": {
    "unique_count": {
      ...
      "buckets": [
        {
          "key": 4,
          "doc_count": 500, // 1220 
          "count": {
            "value": 26// 276 
          }
        },
        {
          "key": 3,
          "doc_count": 200, // 488 
          "count": {
            "value": 20// 121 
          }
        }
      ]
    }
  }
}

 

5 - 주의사항


collapse 키워드
  • 축소 기능 ES5.3 릴리즈 이후..
  • 집합 & 접기는 키워드 유형에만 유효합니다
  • 좋은 웹페이지 즐겨찾기