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

refactor(blooms): Do not use sleeps on integration test #13308

Merged
merged 2 commits into from
Jun 26, 2024

Conversation

salvacorts
Copy link
Contributor

What this PR does / why we need it:
This is a followup for #13296. We now do not use sleeps to wait for compaction and bloom build to finish. Since we no longer restart the components, we can look at their metrics which will be updated appropriately.

Checklist

  • Reviewed the CONTRIBUTING.md guide (required)
  • Documentation added
  • Tests updated
  • Title matches the required conventional commits format, see here
    • Note that Promtail is considered to be feature complete, and future development for logs collection will be in Grafana Alloy. As such, feat PRs are unlikely to be accepted unless a case can be made for the feature actually being a bug fix to existing behavior.
  • Changes that require user attention or interaction to upgrade are documented in docs/sources/setup/upgrade/_index.md
  • For Helm chart changes bump the Helm chart version in production/helm/loki/Chart.yaml and update production/helm/loki/CHANGELOG.md and production/helm/loki/README.md. Example PR
  • If the change is deprecating or removing a configuration option, update the deprecated-config.yaml and deleted-config.yaml files respectively in the tools/deprecated-config-checker directory. Example PR


// always cache LIST operations
c.CacheListOps = true
f.BoolVar(&c.CacheListOps, prefix+"cache-list-ops", true, "Cache LIST operations. This is a hidden flag.")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm making this configurable so we can disable it in the integration test.

@salvacorts salvacorts marked this pull request as ready for review June 25, 2024 10:24
@salvacorts salvacorts requested a review from a team as a code owner June 25, 2024 10:24
// This will always be set to true when flags are registered.
// In tests, where config is created as literal, it can be set manually.
CacheListOps bool `yaml:"-"`
CacheListOps bool `yaml:"cache_list_ops" doc:"hidden"`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should give this a yaml:"-" flag too so it can't be loaded that way

@salvacorts salvacorts merged commit 0c289a8 into main Jun 26, 2024
60 checks passed
@salvacorts salvacorts deleted the salvacorts/bloom-refactor/improve-integration-test branch June 26, 2024 07:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants