You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Explores that point to large tables like search_clients_daily, it's usually helpful to have aggregate tables smaller than the daily grain (weekly, monthly, etc.)
For Explores that point to large tables like
search_clients_daily
, it's usually helpful to have aggregate tables smaller than the daily grain (weekly, monthly, etc.)The
always_filter
onsubmission_date
(https://github.com/mozilla/lookml-generator/blob/main/generator/explores/explore.py#L239-L240) for example means we can't aggregate tosubmission_month
orsubmission_year
so the fastest aggregate-aware queries we have will point to daily aggregates. We can get a lot faster for month/month year/year queries if we change that.Opening this issue to gather thoughts on how to fix that.
One option is to remove the auto-generated
always_filter
forsubmission_date: 28 days
in Explores eg. https://github.com/mozilla/looker-hub/blob/main/search/explores/desktop_search_counts.explore.lkml#L13-L17 and find another way to prevent huge scans. Any other ideas?cc @Marlene-M-Hirose @scholtzan
The text was updated successfully, but these errors were encountered: