Data quantities

Potential data layouts to try

  1. Normalised format. Each row has three fields: stock, metric, date
  2. Group into simple buckets. Each row has an array of all the values grouped by one of stock, metric or date. e.g. one row would have the key AAPL and an array for all days. The index would be on the key chosen.
  3. Group into compound buckets. Each row has an array of values. The index would be on the grouping key. Potential groupings:
    1. stock_metric e.g. each row would have a key AAPL_CLOSE and an array for all days
    2. stock_date
    3. date_metric

Things to try

Normalised test results