[minor](log) add details for unqueryable replicas (#19792)

Add a new FE config: show_details_for_unaccessible_tablet.
Default is false, when set to true, if a query is unable to select a healthy replica,
the detailed information of all the replicas of the tablet including the specific reason why they are unqueryable,
will be printed out.
This commit is contained in:
Mingyu Chen
2023-05-19 08:53:57 +08:00
committed by GitHub
parent dc8a992bba
commit 14620a6766
4 changed files with 52 additions and 12 deletions

View File

@ -1968,6 +1968,13 @@ public class Config extends ConfigBase {
* optimization of table structures
*
*/
@ConfField(mutable = true, masterOnly = false)
@ConfField(mutable = true)
public static boolean enable_query_hit_stats = false;
@ConfField(mutable = true, description = {
"设置为 true,如果查询无法选择到健康副本时,会打印出该tablet所有副本的详细信息," + "以及不可查询的具体原因。",
"When set to true, if a query is unable to select a healthy replica, "
+ "the detailed information of all the replicas of the tablet,"
+ " including the specific reason why they are unqueryable, will be printed out."})
public static boolean show_details_for_unaccessible_tablet = false;
}