-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Refactor vtcombo
flags - Part 4
#18422
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 vtcombo
flags - Part 4
#18422
Conversation
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
There's a relevant test failure here?
|
Signed-off-by: mounicasruthi <[email protected]>
7b5e55f
to
cc60db7
Compare
Signed-off-by: Nick Van Wiggeren <[email protected]>
Signed-off-by: Nick Van Wiggeren <[email protected]>
167651f
to
c63b8e3
Compare
Signed-off-by: Nick Van Wiggeren <[email protected]>
Signed-off-by: Nick Van Wiggeren <[email protected]>
Signed-off-by: Nick Van Wiggeren <[email protected]>
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #18422 +/- ##
==========================================
- Coverage 67.49% 67.48% -0.01%
==========================================
Files 1607 1607
Lines 263518 263529 +11
==========================================
- Hits 177849 177837 -12
- Misses 85669 85692 +23 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -124,6 +124,7 @@ func (vttablet *VttabletProcess) Setup() (err error) { | |||
vttablet.proc.Args = append(vttablet.proc.Args, "--pprof", fmt.Sprintf("cpu,waitSig,path=vttablet_pprof_%s", vttablet.Name)) | |||
} | |||
|
|||
//TODO: Remove underscore(_) flags in v25, replace them with dashed(-) notation |
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.
should we mention this in the changelog so people know?
baf9fa8
to
436612b
Compare
Description
This PR is a part of an ongoing change to support the transition from underscores (
_
) to dashes (-
) in flag naming conventions. This PR refactors some flags specific tovtcombo
binary.Flags Updated in This PR:
--relay-log-max-items
--relay-log-max-size
--restore-concurrency
--restore-from-backup
--restore-from-backup-ts
--retain-online-ddl-tables
--sanitize-log-messages
--schema-change-signal
--schema-dir
--serving-state-grace-period
--shard-sync-retry-delay
--shutdown-grace-period
--start-mysql
--stream-buffer-size
--stream-health-buffer-size
--table-gc-lifecycle
--tablet-filters
--throttle-tablet-types
--track-schema-versions
--twopc-abandon-age
--tx-throttler-config
--tx-throttler-healthcheck-cells
--unhealthy-threshold
Flag Count Before vs After:
_
-
# of migrated flags: 47
Related Issue(s)
#17880
Checklist