[opt](catalog) add some profile for parquet reader and change meta cache config (#37040) (#37146)

bp #37040
This commit is contained in:
Mingyu Chen
2024-07-02 20:58:43 +08:00
committed by GitHub
parent c7549acf29
commit e25717458e
6 changed files with 41 additions and 12 deletions

View File

@ -1944,16 +1944,21 @@ public class Config extends ConfigBase {
@ConfField(mutable = false, masterOnly = false)
public static long max_hive_partition_cache_num = 100000;
@ConfField(mutable = false, masterOnly = false, description = {"Hive表到分区名列表缓存的最大数量。",
"Max cache number of hive table to partition names list."})
@ConfField(mutable = false, masterOnly = false, description = {"Hive表缓存的最大数量。",
"Max cache number of hive table name list."})
public static long max_hive_table_cache_num = 1000;
@ConfField(mutable = false, masterOnly = false, description = {
"Hive分区表缓存的最大数量", "Max cache number of hive partition table"
})
public static long max_hive_partition_table_cache_num = 1000;
@ConfField(mutable = false, masterOnly = false, description = {"获取Hive分区值时候的最大返回数量,-1代表没有限制。",
"Max number of hive partition values to return while list partitions, -1 means no limitation."})
"Max number of hive partition values to return while list partitions, -1 means no limitation."})
public static short max_hive_list_partition_num = -1;
@ConfField(mutable = false, masterOnly = false, description = {"远程文件系统缓存的最大数量",
"Max cache number of remote file system."})
"Max cache number of remote file system."})
public static long max_remote_file_system_cache_num = 100;
@ConfField(mutable = false, masterOnly = false, description = {"外表行数缓存最大数量",