-
Notifications
You must be signed in to change notification settings - Fork 701
ticdc: correct the tiup cluster command #21135
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: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,15 +129,15 @@ This section describes how to use the [`tiup cluster edit-config`](/tiup/tiup-co | |
|
||
In the preceding command, `gc-ttl` is set to 48 hours. | ||
|
||
3. Run the `tiup cluster reload -R cdc` command to reload the configuration. | ||
3. Run the `tiup cluster reload <cluster-name> -R cdc` command to reload the configuration. | ||
|
||
## Stop and start TiCDC using TiUP | ||
|
||
You can use TiUP to easily stop and start TiCDC nodes. The commands are as follows: | ||
|
||
- Stop TiCDC: `tiup cluster stop -R cdc` | ||
- Start TiCDC: `tiup cluster start -R cdc` | ||
- Restart TiCDC: `tiup cluster restart -R cdc` | ||
- Stop TiCDC: `tiup cluster stop <cluster-name> -R cdc` | ||
- Start TiCDC: `tiup cluster start <cluster-name> -R cdc` | ||
- Restart TiCDC: `tiup cluster restart <cluster-name> -R cdc` | ||
Comment on lines
+138
to
+140
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These corrections to include Style Guide ReferencesFootnotes |
||
|
||
## Enable TLS for TiCDC | ||
|
||
|
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.
Excellent correction! Adding the
<cluster-name>
placeholder is crucial for the command's accuracy and usability, directly benefiting users trying to follow these instructions. This change enhances the technical accuracy of the document, which is a key aspect of our style guide.1Style Guide References
Footnotes
The style guide emphasizes reviewing for technical accuracy and terminology consistency. (link) ↩