Hi,
I have two sets of data in our DB, say Scores and Players e.g.
- Player index - will have a player id, name, type of player, age.
- Score index - will have a score id, play date, played at (location), score and player id.
Both indexes only have 1 common field 'player id'. So I would like to have a dashboard that displays interesting Score information and likewise displays interesting Player information.
E.g.
Given a date range of 2017-01-01 to 2018-01-01,
I would like to create a Table visualization to display Max, Avg and Min scores (from Score index) as well as the stats on the player types and avg age on a different Table visualization.
I understand that if we further de-normalize the data by joining them into one, we can easily create the buckets for aggregation. However, my concern is that if we need to add new field or information that does not exists yet, we would have to re-index and it becomes a concern especially if the size of the data set is huge (over 20 million).
Appreciate if you could share similar experience and what approach did you take.
Thanks,
Kenneth