tidb怎么查询没有走索引的表

自问自答了
系统读写热点查询
读写热点查询主要用到了information_schema中的tidb_hot_regions和tikv_region_peers系统表。

场景一:查询当前读写热点表

select db_name, table_name, index_name,
type, – 读写热点分类
sum(FLOW_BYTES), – 每分钟流量
count(1),
group_concat(h.region_id),
count(DISTINCT p.store_id),
group_concat(p.store_id)
from TIDB_HOT_REGIONS h
join TIKV_REGION_PEERS p
on h.region_id = p.region_id
and p.IS_LEADER = 1
group by db_name, table_name, index_name, type;