HiveMetastore

HiveMetastore 背后的存储
  • select * from DBS;

在这里插入图片描述

  • select * from TBLS;

在这里插入图片描述

select * from TABLE_PARAMS;
在这里插入图片描述

  • 查找出没有 totalSize stats 的table
SELECT DBS.NAME,t.TBL_NAME from DBS inner join (select DB_ID,TBL_NAME from TBLS where TBLS.TBL_ID not in(select TBL_ID from TABLE_PARAMS  where PARAM_KEY = 'totalSize')) t on DBS.DB_ID=t.DB_ID;

相关推荐

  1. 【Hive实战】HiveMetaStore的指标采集告警

    2024-06-08 20:24:05       24 阅读
  2. 【Hive实战】 HiveMetaStore的指标分析

    2024-06-08 20:24:05       43 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-08 20:24:05       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-08 20:24:05       106 阅读
  3. 在Django里面运行非项目文件

    2024-06-08 20:24:05       87 阅读
  4. Python语言-面向对象

    2024-06-08 20:24:05       96 阅读

热门阅读

  1. Debian的常用命令

    2024-06-08 20:24:05       23 阅读
  2. 在Debian系统上赋予普通用户ping 权限

    2024-06-08 20:24:05       30 阅读
  3. 【FPGA】arm数据总线和axi数据总线有什么异同点?

    2024-06-08 20:24:05       35 阅读
  4. Docker——容器技术的发展

    2024-06-08 20:24:05       31 阅读
  5. 数据仓库中数据质量如何提升

    2024-06-08 20:24:05       25 阅读
  6. Base64 编码表 参考

    2024-06-08 20:24:05       29 阅读
  7. 【TVM 教程】编译 PyTorch 目标检测模型

    2024-06-08 20:24:05       30 阅读
  8. 引用和指针的区别

    2024-06-08 20:24:05       31 阅读
  9. Python 中如何使用 lambda 函数

    2024-06-08 20:24:05       29 阅读
  10. 二叉树、二叉搜索树、平衡二叉搜索树

    2024-06-08 20:24:05       29 阅读
  11. 【环境搭建】1.阿里云ECS服务器 安装jdk8

    2024-06-08 20:24:05       29 阅读
  12. python 异步编程:协程

    2024-06-08 20:24:05       33 阅读