-
Notifications
You must be signed in to change notification settings - Fork 7
feat: enable batch deployment to improve performance #197
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
base: main
Are you sure you want to change the base?
Conversation
Added support for batch deployment of multiple deployments. Previously, all deployments were loaded into a single Helm chart file, causing timeouts and performance degradation during large-scale installs. This update splits the process into manageable batches to avoid overload and improve reliability.
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.
except one comment, it looks good to me
total: 5 | ||
replica: 2000 | ||
paddingBytes: 0 | ||
start: 0 |
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.
please remove that last char.
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.
You mean the last char after '0'? Or move the '0' char?
Added support for batch deployment of multiple deployments. Previously, all deployments were loaded into a single Helm chart file, causing timeouts and performance degradation during large-scale installs. This update splits the process into manageable batches to avoid overload and improve reliability.