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

Fix rollup on date fields that don't support epoch_millis #31890

Merged
merged 8 commits into from
Jul 19, 2018

Commits on Jul 9, 2018

  1. Fix rollup on date fields that don't support epoch_millis

    The rollup indexer uses a range query to select the next page
    of results based on the last time bucket of the previous round
    and the `delay` configured on the rollup job. This query uses
    the `epoch_millis` format implicitly but doesn't set the `format`.
    This result in errors during the rollup job if the field
    definition doesn't allow this format. It can also miss documents
    if the format is not accepted but another format in the field
    definition is able to parse the query (e.g.: `epoch_second`).
    This change ensures that we use `epoch_millis` as the only format
    to parse the rollup range query.
    jimczi committed Jul 9, 2018
    Configuration menu
    Copy the full SHA
    8bc075d View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2018

  1. Configuration menu
    Copy the full SHA
    1216594 View commit details
    Browse the repository at this point in the history
  2. Convert integration test to ut

    jimczi committed Jul 17, 2018
    Configuration menu
    Copy the full SHA
    3769805 View commit details
    Browse the repository at this point in the history
  3. add rest test

    jimczi committed Jul 17, 2018
    Configuration menu
    Copy the full SHA
    8527763 View commit details
    Browse the repository at this point in the history
  4. fix time zone parsing

    jimczi committed Jul 17, 2018
    Configuration menu
    Copy the full SHA
    b919b30 View commit details
    Browse the repository at this point in the history
  5. fix style

    jimczi committed Jul 17, 2018
    Configuration menu
    Copy the full SHA
    b68b760 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2018

  1. fix date parsing

    jimczi committed Jul 18, 2018
    Configuration menu
    Copy the full SHA
    0aa7f2b View commit details
    Browse the repository at this point in the history
  2. remove unwanted file

    jimczi committed Jul 18, 2018
    Configuration menu
    Copy the full SHA
    2a33d9f View commit details
    Browse the repository at this point in the history