You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/exceptions.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ summary: Learn the common exceptions during the operation of TiDB clusters on Ku
5
5
6
6
# Common Cluster Exceptions of TiDB on Kubernetes
7
7
8
-
This document describes the common exceptions during the operation of TiDB clusters on Kubernetes and their solutions.
8
+
This document describes common exceptions during the operation of TiDB clusters on Kubernetes and their solutions.
9
9
10
10
## Persistent connections are abnormally terminated in TiDB
11
11
@@ -14,9 +14,9 @@ Load balancers often set the idle connection timeout. If no data is sent via a c
14
14
- If a persistent connection is terminated when you use TiDB, check the middleware program between the client and the TiDB server.
15
15
- If the idle timeout is not long enough for your query, try to set the timeout to a larger value. If you cannot reset it, enable the `tcp-keep-alive` option in TiDB.
16
16
17
-
In Linux, the keepalive probe packet is sent every 7,200 seconds by default. To shorten the interval, configure `sysctls` via the `podSecurityContext` field.
17
+
On Linux, the keepalive probe packet is sent every 7,200 seconds by default. To shorten the interval, configure `sysctls` via the `podSecurityContext` field.
18
18
19
-
- If `--allowed-unsafe-sysctls=net.*` can be configured for [kubelet](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/) in the Kubernetes cluster, configure TiDBGroup using the [Overlay](overlay.md) feature in the following way:
19
+
- If `--allowed-unsafe-sysctls=net.*` can be configured for [kubelet](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/) in the Kubernetes cluster, configure TiDBGroup using the [Overlay](overlay.md) feature as follows:
20
20
21
21
```yaml
22
22
apiVersion: core.pingcap.com/v1alpha1
@@ -33,7 +33,7 @@ In Linux, the keepalive probe packet is sent every 7,200 seconds by default. To
33
33
value: "300"
34
34
```
35
35
36
-
- If `--allowed-unsafe-sysctls=net.*` cannot be configured for [kubelet](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/) in the Kubernetes cluster, configure TiDBGroup using the [Overlay](overlay.md) feature in the following way:
36
+
- If `--allowed-unsafe-sysctls=net.*` cannot be configured for [kubelet](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/) in the Kubernetes cluster, configure TiDBGroup using the [Overlay](overlay.md) feature as follows:
0 commit comments