-
Notifications
You must be signed in to change notification settings - Fork 61
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: search indexer service scaling on staging #17234
Conversation
WalkthroughThe changes in this pull request primarily involve modifications to the configuration files for the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (3)
🧰 Additional context used📓 Path-based instructions (1)infra/src/dsl/output-generators/map-to-helm-values.ts (1)Pattern
🔇 Additional comments (5)charts/services/search-indexer-service/values.staging.yaml (2)
The change ensures that the Horizontal Pod Autoscaler (HPA) will maintain exactly one replica of the search indexer service, which aligns with the requirement that only one container should run at any time.
The change ensures consistent configuration with the HPA settings, maintaining a single replica count maximum. This is the correct approach for services that must run as singletons. infra/src/dsl/output-generators/map-to-helm-values.ts (1)
The condition charts/islandis/values.staging.yaml (2)
The change ensures consistent HPA configuration across all deployment files, maintaining the single container requirement for the search indexer service.
The change ensures consistent replica count configuration across all deployment files, maintaining the single container requirement for the search indexer service. Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #17234 +/- ##
=======================================
Coverage 35.71% 35.71%
=======================================
Files 6944 6944
Lines 148537 148537
Branches 42405 42405
=======================================
Hits 53047 53047
Misses 95490 95490 Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report in Codecov by Sentry.
|
Search indexer scaling
This service should only at max have 1 containers running so this is a special edge case that needs to be dealt with.
Summary by CodeRabbit
New Features
Bug Fixes
search-indexer-service
andservices-university-gateway
.Chores