Challenge: Aggregations
Test your aggregation writing skills in Elasticsearch.
We'll cover the following...
Challenge
You are working with a dataset of movie information stored in Elasticsearch. The dataset includes several attributes for each movie, such as title
, lifetime_gross
, year
, studio
, rating
, runtime
, budget
, releaseDate
, voteAvg
, and voteCount
. Your task is to perform different aggregation queries in Elasticsearch.
The movies
index comprises several fields with their respective data types and purposes, including:
-
title
: Thistext
field stores the title of the movie. It allows full-text ...