From 17e971e6a48baab21165024cb957f6710cc627e7 Mon Sep 17 00:00:00 2001 From: lei yu Date: Thu, 15 Oct 2020 10:27:33 +0800 Subject: [PATCH] Fix TiFlash critical logs (#4682) * fix * Apply suggestions from code review Co-authored-by: Ran * Update tiflash/maintain-tiflash.md Co-authored-by: Ran --- tiflash/maintain-tiflash.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tiflash/maintain-tiflash.md b/tiflash/maintain-tiflash.md index 71c9fc3d9002..9b9582a44391 100644 --- a/tiflash/maintain-tiflash.md +++ b/tiflash/maintain-tiflash.md @@ -31,12 +31,24 @@ aliases: ['/docs-cn/dev/tiflash/maintain-tiflash/','/docs-cn/dev/reference/tifla ## TiFlash 重要日志介绍 +为了更好地兼容 TiDB 的日志格式,TiFlash 在 v4.0.5 中修改了原有的日志格式,因此会有两个不同版本的日志。 + +如果你的 TiDB 集群版本 < 4.0.5: + | 日志信息 | 日志含义 | |---------------|---------------------| | [ 23 ] `` KVStore: Start to persist [region 47, applied: term 6 index 10] | 在 TiFlash 中看到类似日志代表数据开始同步(该日志开头方括号内的数字代表线程号,下同) | | [ 30 ] `` CoprocessorHandler: grpc::Status DB::CoprocessorHandler::execute() | Handling DAG request,该日志代表 TiFlash 开始处理一个 Coprocessor 请求 | | [ 30 ] `` CoprocessorHandler: grpc::Status DB::CoprocessorHandler::execute() | Handle DAG request done,该日志代表 TiFlash 完成 Coprocessor 请求的处理 | +如果你的 TiDB 集群版本 >= 4.0.5: + +| 日志信息 | 日志含义 | +|---------------|-------------------| +| [INFO] [``] ["KVStore: Start to persist [region 47, applied: term 6 index 10]"] [thread_id=23] | 在 TiFlash 中看到类似日志代表数据开始同步 | +| [DEBUG] [``] ["CoprocessorHandler: grpc::Status DB::CoprocessorHandler::execute(): Handling DAG request"] [thread_id=30] | 该日志代表 TiFlash 开始处理一个 Coprocessor 请求 | +| [DEBUG] [``] ["CoprocessorHandler: grpc::Status DB::CoprocessorHandler::execute(): Handle DAG request done"] [thread_id=30] | 该日志代表 TiFlash 完成 Coprocessor 请求的处理 | + 你可以找到一个 Coprocessor 请求的开始或结束,然后通过日志前面打印的线程号找到该 Coprocessor 请求的其他相关日志。 ## TiFlash 系统表