Skip to content

Commit 33416e9

Browse files
committed
fix:Renaming of userguide titles in V23
Signed-off-by: Dindihub <[email protected]>
1 parent 4cfaf19 commit 33416e9

File tree

9 files changed

+15
-16
lines changed

9 files changed

+15
-16
lines changed

content/en/docs/23.0/user-guides/configuration-basic/add-delete-cell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Add or Delete a Cell
2+
title: Adding or Deleting a Cell
33
weight: 15
44
---
55

6-
## Add
6+
## Adding a Cell
77
To add a cell after a cluster is up and running, you start off by creating one using the same steps previously performed to create the first cell:
88

99
```sh
@@ -31,7 +31,7 @@ If the `cells` option is not specified, the rebuild deploys to all cells.
3131

3232
Once these steps are done, you can bring up the necessary MySQLs, vttablets and vtgates under that cell.
3333

34-
## Delete
34+
## Deleting a Cell
3535

3636
To delete a cell, bring down all servers in that cell, and then remove its entry from the global topo with:
3737

content/en/docs/23.0/user-guides/configuration-basic/delete-keyspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Delete a Keyspace
2+
title: Deleting a Keyspace
33
weight: 14
44
---
55

content/en/docs/23.0/user-guides/configuration-basic/exporting-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ to the database. As a result, you will only be guaranteed to get a 100%
2121
consistent dump using these tools if you are sure that you are not writing
2222
to the database while running the dump.
2323

24-
### mysqldump
24+
## mysqldump
2525

2626
The default invocation of `mysqldump` attempts to execute statements which are [not supported by Vitess](../../../reference/compatibility/mysql-compatibility/), such as attempting to lock tables and dump GTID coordinates. The following options are required when using the `mysqldump` binary from MySQL 5.7 to export data from the `commerce` keyspace:
2727

content/en/docs/23.0/user-guides/configuration-basic/global-topo.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Global TopoServer
2+
title: Configuring a Global TopoServer
33
weight: 4
44
aliases: ['/docs/user-guide/topology-service/']
55
---
@@ -36,15 +36,15 @@ Note that the topo implementation for etcd is `etcd2`. This is because Vitess us
3636
To be safe, you may want to bring up etcd with `--enable-v2=true`, even though it is the default value. Also, you will need to set the `ETCDCTL_API=2` environment variable before bringing up etcd.
3737
{{< /info >}}
3838

39-
## Moving to a different TopoServer
39+
## Moving TopoServers
4040

4141
It is generally not recommended that you migrate from one type of toposerver to another. However, if absolutely necessary, you can use the [topo2topo](../../../reference/features/topology-service/#migration-between-implementations) command line tool to perform this migration.
4242

43-
## Backups
43+
## Backing up TopoServer Data
4444

4545
It is important to periodically backup the data in the TopoServer. Although most of the information in the TopoServer can be manually reconstructed, it is still a painful task. This can be avoided if a recent backup was readily available.
4646

47-
## Checklist
47+
## Checklist for TopoSever setup
4848

4949
* Ensure toposerver is up, and that you can set and get values using their provided client tools.
5050
* Ensure you have the mechanism to include the correct topo flags for all the components: `--topo_implementation`, `--topo_global_server_address` and `--topo_global_root`.

content/en/docs/23.0/user-guides/configuration-basic/initialize-shard-primary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Initialize Shard Primary
2+
title: Initializing Shard Primary
33
weight: 9
44
---
55

content/en/docs/23.0/user-guides/configuration-basic/keyspaces-shards.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Keyspaces and Shards
2+
title: Creating Keyspaces and Shards
33
weight: 7
44
---
55

content/en/docs/23.0/user-guides/configuration-basic/monitoring.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Monitoring
2+
title: Monitoring Vitess Components
33
weight: 16
44
aliases: ['/docs/launching/server-configuration/', '/docs/user-guides/server-configuration/', '/docs/user-guides/configuring-components/']
55
---
66

77
This section describes how to monitor Vitess components. Additionally, we recommend that you also add the necessary monitoring and alerting for the TopoServers as well as the MySQL instances running with each vttablet.
88

9-
## Tools
9+
## Monitoring Tools
1010

1111
Vitess provides integrations with a variety of popular monitoring tools: Prometheus, InfluxDB and Datadog. The core infrastructure uses go's `expvar` package to export real-time variables visible as a JSON object served by the `/debug/vars` URL. The exported variables are CamelCase names. These names are algorithmically converted to the appropriate naming standards for each monitoring tool. For example, Prometheus uses a [snake case conversion algorithm](https://github.com/vitessio/vitess/blob/e259a08f017d9f1b5984fcaac5c54e26d1c7c31d/go/stats/prometheusbackend/prometheusbackend.go#L95-L116). In this case, the Prometheus exporter would convert the `Queries.Histograms.Select.500000` variable to `vttablet_queries_bucket{plan_type="Select",le="0.0005"}`.
1212

content/en/docs/23.0/user-guides/configuration-basic/planning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Planning
2+
title: Setting up and Managing a Vitess Cluster
33
weight: 3
44
aliases: ['/docs/user-guides/configuration-basic/configuring-components/']
55
---

content/en/docs/23.0/user-guides/configuration-basic/ports.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
title: Ports
2+
title: Ports and Network interactions in Vitess
33
weight: 16
44
aliases: ['/docs/launching/server-configuration/', '/docs/user-guides/server-configuration/', '/docs/user-guides/configuring-components/']
55
---
6-
# Ports and Network interactions in Vitess
76

87
Many/most of these ports are fully configurable, but we are listing their
98
defaults or the defaults we use in examples here. Your

0 commit comments

Comments
 (0)