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

[Rollup] Disallow index patterns that match rollup indices #30491

Merged
merged 5 commits into from
Jun 5, 2018

Commits on May 9, 2018

  1. [Rollup] Disallow index patterns that match rollup indices

    We should not allow the user to configure index patterns that also match
    rollup indices (either the index specified in the config, or previously
    created jobs).
    
    Matching against rollup indices will almost certainly lead to bad behavior,
    because the expected fields in the user index won't exist in the rollup
    (due to renaming).  It is also unlikely a user will want to match
    against a rollup index.
    
    For example, it is quite natural for a user to specify `metricbeat-*`
    as the index pattern, and then store the rollups in `metricbeat-rolled`.
    This will start throwing errors as soon as the rollup index is created
    because the indexer will try to search it.
    polyfractal committed May 9, 2018
    Configuration menu
    Copy the full SHA
    c660ebe View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2018

  1. Configuration menu
    Copy the full SHA
    733e12d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    98a47f8 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2018

  1. Configuration menu
    Copy the full SHA
    2c3185c View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2018

  1. Configuration menu
    Copy the full SHA
    275b594 View commit details
    Browse the repository at this point in the history