Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sql_series: optimize memory use for range time series #61

Merged
merged 2 commits into from
Jun 5, 2018

Commits on Jun 5, 2018

  1. sql_series: optimize memory use for range time series

    Refactored the series parsing code to avoid intermediate object allocations
    and mutations, which make longer time series too expensive. The series
    is now constructed in single pass, backfilling null values when needed.
    vavrusa committed Jun 5, 2018
    Configuration menu
    Copy the full SHA
    dd43ce4 View commit details
    Browse the repository at this point in the history
  2. sql_query: apply ad-hoc filters on inner subqueries

    The ad-hoc filters were previously applied on outer query, not on
    inner query over an actual table.
    vavrusa committed Jun 5, 2018
    Configuration menu
    Copy the full SHA
    0f0fae0 View commit details
    Browse the repository at this point in the history