Skip to content

Commit

Permalink
TiKV config: add 7 log-related congifurations (#6372) (#6470)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Sep 15, 2021
1 parent 800b141 commit a7efe0c
Showing 1 changed file with 41 additions and 3 deletions.
44 changes: 41 additions & 3 deletions tikv-configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This document only describes the parameters that are not included in command-lin

## Global configuration

### abort-on-panic
### `abort-on-panic`

+ Sets whether to call `abort()` to exit the process when TiKV panics. This option affects whether TiKV allows the system to generate core dump files.

Expand All @@ -22,7 +22,45 @@ This document only describes the parameters that are not included in command-lin

+ Default value: `false`

### server
### `log-level`

+ The log level
+ Value options: "trace", "debug", "info", "warning", "error", "critical"
+ Default value: "info"

### `log-file`

+ The log file. If this configuration is not set, logs are output to "stderr" by default.
+ Default value: ""

### `log-format`

+ The log format
+ Value options: "json", "text"
+ Default value: "text"

### `log-rotation-timespan`

+ The timespan between log rotations. When this timespan passes, log files are rotated, that is, a timestamp is appended to the file name of the current log file, and a new file is created.
+ Default value: "24h"

### `log-rotation-size`

+ The size of a log file that triggers log rotation. Once the size of a log file is bigger than the specified threshold value, log files are rotated. The old log file is placed into the new file, and the new file name is the old file name with a timestamp suffix.
+ Default value: "300MB"

### `slow-log-file`

+ The file to store slow logs
+ If this configuration is not set but `log-file` is set, slow logs are output to the log file specified by `log-file`. If neither `slow-log-file` nor `log-file` are set, all logs are output to "stderr".
+ Default value: ""

### `slow-log-threshold`

+ The threshold for outputing slow logs. If the processing time is longer than this threshold, slow logs are output.
+ Default value: "1s"

## server

+ Configuration items related to the server

Expand Down Expand Up @@ -115,7 +153,7 @@ This document only describes the parameters that are not included in command-lin

### `end-point-slow-log-threshold`

+ The time threshold for a TiDB's push down request to print slow log
+ The time threshold for a TiDB's push-down request to output slow log. If the processing time is longer than this threshold, the slow logs are output.
+ Default value: `"1s"`
+ Minimum value: `0`

Expand Down

0 comments on commit a7efe0c

Please sign in to comment.