-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature](metacache) add system table catalog_meta_cache_statistics #40155
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
clang-tidy review says "All clean, LGTM! 👍" |
3 similar comments
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
run buildall |
TPC-H: Total hot run time: 38064 ms
|
TPC-DS: Total hot run time: 193673 ms
|
ClickBench: Total hot run time: 32.41 s
|
run buildall |
TPC-H: Total hot run time: 38142 ms
|
TPC-DS: Total hot run time: 193560 ms
|
ClickBench: Total hot run time: 32.41 s
|
d651001
to
9561e15
Compare
run buildall |
TPC-H: Total hot run time: 38130 ms
|
TPC-DS: Total hot run time: 193133 ms
|
ClickBench: Total hot run time: 31.27 s
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
…40155) Add new system table `catalog_meta_cache_statistics` ``` mysql> select * from information_schema.catalog_meta_cache_statistics; +--------------+-----------------------------+----------------------+---------------------+ | CATALOG_NAME | CACHE_NAME | METRIC_NAME | METRIC_VALUE | +--------------+-----------------------------+----------------------+---------------------+ | hms | hive_file_cache | eviction_count | 0 | | hms | hive_file_cache | hit_ratio | 0.6 | | hms | hive_file_cache | average_load_penalty | 7.60805755E7 | | hms | hive_file_cache | estimated_size | 2 | | hms | hive_file_cache | hit_count | 3 | | hms | hive_file_cache | read_count | 5 | | hms | hive_partition_cache | eviction_count | 0 | | hms | hive_partition_cache | hit_ratio | 1.0 | | hms | hive_partition_cache | average_load_penalty | 0.0 | | hms | hive_partition_cache | estimated_size | 0 | | hms | hive_partition_cache | hit_count | 0 | | hms | hive_partition_cache | read_count | 0 | | hms | hive_partition_values_cache | eviction_count | 0 | | hms | hive_partition_values_cache | hit_ratio | 1.0 | | hms | hive_partition_values_cache | average_load_penalty | 0.0 | | hms | hive_partition_values_cache | estimated_size | 0 | | hms | hive_partition_values_cache | hit_count | 0 | | hms | hive_partition_values_cache | read_count | 0 | | hms | hudi_partition_cache | eviction_count | 0 | | hms | hudi_partition_cache | hit_ratio | 1.0 | | hms | hudi_partition_cache | average_load_penalty | 0.0 | | hms | hudi_partition_cache | estimated_size | 0 | | hms | hudi_partition_cache | hit_count | 0 | | hms | hudi_partition_cache | read_count | 0 | | iceberg | iceberg_table_cache | eviction_count | 0 | | iceberg | iceberg_table_cache | hit_ratio | 0.07407407407407407 | | iceberg | iceberg_table_cache | average_load_penalty | 1.7263263424E8 | | iceberg | iceberg_table_cache | estimated_size | 25 | | iceberg | iceberg_table_cache | hit_count | 2 | | iceberg | iceberg_table_cache | read_count | 27 | | iceberg | iceberg_snapshot_cache | eviction_count | 0 | | iceberg | iceberg_snapshot_cache | hit_ratio | 1.0 | | iceberg | iceberg_snapshot_cache | average_load_penalty | 0.0 | | iceberg | iceberg_snapshot_cache | estimated_size | 0 | | iceberg | iceberg_snapshot_cache | hit_count | 0 | | iceberg | iceberg_snapshot_cache | read_count | 0 | +--------------+-----------------------------+----------------------+---------------------+ ```
Add new system table
catalog_meta_cache_statistics