hivehook 表血缘与字段血缘的解析
创始人
2025-01-15 23:03:38
0

代码

import org.apache.hadoop.hive.ql.hooks.ExecuteWithHookContext; import org.apache.hadoop.hive.ql.hooks.HookContext; import org.apache.hadoop.hive.ql.hooks.LineageInfo; import org.apache.hadoop.hive.metastore.api.Table; import org.slf4j.Logger; import org.slf4j.LoggerFactory;  import java.util.*;  public class HiveServerQueryLogHook implements ExecuteWithHookContext { 	static final Logger LOG = LoggerFactory.getLogger(HiveServerQueryLogHook.class); 	     @Override     public void run(HookContext hookContext) throws Exception {         printLineageInfo(hookContext);     }     private void printLineageInfo(HookContext hookContext) {         // 输出表         Set inputTables = new HashSet<>();;          // 输入表         Set outputTables = new HashSet<>();;          // 字段血缘 Map         // key为输出字段,value为来源字段数组         Map> fieldLineage = new HashMap<>(); 		 		// 从 `hookContext` 中获取 `Linfo` 并返回其 entry set,这意味着我们会获取到一个包含键值对的集合;遍历 `hookContext` 中 `Linfo` 的 entry set         for(Map.Entry dep: hookContext.getLinfo().entrySet()){             // 表血缘             // 将 `dep.getKey()` 转换为一个 Optional 对象,以防止空指针异常。             Optional.ofNullable(dep.getKey())             		// 如果 `dep.getKey()` 不为空,则将其转换为 `DataContainer` 对象。                     .map(LineageInfo.DependencyKey::getDataContainer)                     // 如果 `DataContainer` 不为空,则获取其表信息。                     .map(LineageInfo.DataContainer::getTable)                     // 将表信息传递给 `dealOutputTable` 方法进行处理。                     .map(this::dealOutputTable)                     // 如果处理后的结果不为空,则将其添加到 `outputTables` 集合中。                     .ifPresent(outputTables::add);             Optional.ofNullable(dep.getValue())                     .map(LineageInfo.Dependency::getBaseCols)                     .ifPresent(items -> items.stream().map(LineageInfo.BaseColumnInfo::getTabAlias)                             .map(LineageInfo.TableAliasInfo::getTable)                             .map(this::dealOutputTable)                             .forEach(inputTables::add));              // 字段血缘             // 将 `dep.getKey()` 转换为一个 Optional 对象,以防止空指针异常。             String column = Optional.ofNullable(dep.getKey())             		// 如果 `dep.getKey()` 不为空,则将其传递给 `dealDepOutputField` 方法进行处理。                     .map(this::dealDepOutputField)                     // 如果处理后的结果不为空,则将其作为键放入 `fieldLineage` 中,并关联一个空的 ArrayList,然后将该键返回给 `column` 变量。                      .map(aimField -> {                         fieldLineage.put(aimField, new ArrayList<>());                         return aimField;                     // 如果处理后的结果为空,则将 `column` 设置为 null。                     }).orElse(null);                     // 将 `dep.getValue()` 转换为一个 Optional 对象,以防止空指针异常。             Optional.ofNullable(dep.getValue())             		// 如果 `dep.getValue()` 不为空,则获取其基础列信息。                      .map(LineageInfo.Dependency::getBaseCols)                     // 如果基础列信息不为空,则将其转换为流并依次处理,将处理后的结果添加到 `fieldLineage` 中对应 `column` 的列表中。                     .ifPresent(items -> items.stream()                             .map(this::dealBaseOutputField)                             .forEach(item -> {                                 fieldLineage.get(column).add(item);                             }));         }         LOG.info("inputTables : {} ",inputTables);         LOG.info("outputTables : {} ",outputTables);         LOG.info("fieldLineage : {} ",fieldLineage.toString());     }     // 处理表的格式为 库.表     private String dealOutputTable(Table table) {         String dbName = table.getDbName();         String tableName = table.getTableName();         return dbName != null ? String.format("%s.%s", dbName, tableName) : tableName;     }      // 处理输出字段的格式     private String dealDepOutputField(LineageInfo.DependencyKey dependencyKey) {         try{             String tableName = dealOutputTable(dependencyKey.getDataContainer().getTable());             String field = dependencyKey.getFieldSchema().getName();             return String.format("%s.%s", tableName, field);         }catch (Exception e) {             LOG.error("deal dep output field error" + e.getMessage());             return null;         }     }      // 处理来源字段的格式     private String dealBaseOutputField(LineageInfo.BaseColumnInfo baseColumnInfo) {         try{             String tableName = dealOutputTable(baseColumnInfo.getTabAlias().getTable());             String field = baseColumnInfo.getColumn().getName();             return String.format("%s.%s", tableName, field);         }catch (Exception e) {             LOG.error("deal base output field error" + e.getMessage());             return null;         }     }  

配置

编译后生成jar文件添加到hive运行环境,设置hook

1)jar放置/disk1/hive-jars/hook  2)设置env,conf/hive-env.sh pushd /disk1/hive-jars/hook export HOOK_DEPS=$(ls *.jar| xargs -Ixx echo "`pwd`/xx" | sort | tr '\n' ':') popd export HIVE_AUX_JARS_PATH=${xxx%:}:${HOOK_DEPS%:}  3)修改hive-site.xml        hive.exec.post.hooks     com.xxx.xxx.HiveServerQueryLogHook            Comma-separated list of post-execution hooks to be invoked for each statement.       A post-execution hook is specified as the name of a Java class which implements the       org.apache.hadoop.hive.ql.hooks.ExecuteWithHookContext interface.          

测试

sql

use db_dev; CREATE TABLE IF NOT EXISTS `all_report_creator`( `project_id` INT COMMENT '项目组id', `report_id` INT COMMENT '报告id', `creator_id` INT COMMENT '报告创建者id', `nick` STRING COMMENT 'nick名字' )  STORED AS PARQUET; insert overwrite table all_report_creator select t1.project_id,t1.id,t2.id,t2.nick from db.new_report t1 left join db.bigviz_user t2 on t1.creator_id = t2.id where t1.project_id in(7,24) 

血缘

24/07/12 13:34:31 INFO xxx.HiveServerQueryLogHook: inputTables : [db.new_report, db.bigviz_user] 24/07/12 13:34:31 INFO xxx.HiveServerQueryLogHook: outputTables : [db_dev.all_report_creator] 24/07/12 13:34:31 INFO xxx.HiveServerQueryLogHook: fieldLineage : {db_dev.all_report_creator.project_id=[db.new_report.project_id], db_dev.all_report_creator.report_id=[db.new_report.id], db_dev.all_report_creator.creator_id=[db.bigviz_user.id], db_dev.all_report_creator.nick=[db.bigviz_user.nick]} 

参考

HIVE源码学习-hivehook尝试表血缘与字段血缘的解析
http://ganjiacheng.cn/article/2020/article_16_HIVE%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A0-hivehook%E5%B0%9D%E8%AF%95%E8%A1%80%E7%BC%98%E8%A7%A3%E6%9E%90/

相关内容

热门资讯

wpk有透视辅助!wpk俱乐部... 您好,这款游戏可以开挂的,确实是有挂的,需要了解加微【136704302】很多玩家在这款游戏中打牌都...
十分钟实锤!德州之星有外挂(德... 十分钟实锤!德州之星有外挂(德州俱乐部)原来真的有挂(详细辅助切实教程);德州之星有外挂辅助器中分为...
微扑克系统发牌规律(微扑克)微... 微扑克系统发牌规律(微扑克)微扑克ai技术(透视)总是是真的有挂(详细辅助黑科技教程)1、进入到微扑...
wpk有辅助挂!wpk德州扑克... wpk有辅助挂!wpk德州扑克靠不靠谱(透视)外挂透视挂辅助代打(素来是真的有挂);支持多人共享记分...
微扑克辅助挂(微扑克)微扑克俱... 微扑克辅助挂(微扑克)微扑克俱乐部(透视)竟然是真的有挂(详细辅助技巧教程)该软件可以轻松地帮助玩家...
2分钟实锤!德扑之星有作弊(来... 2分钟实锤!德扑之星有作弊(来玩德州)好像是真的有挂(详细辅助解密教程)1、构建自己的德扑之星有作弊...
aapoker透明挂!aapo... aapoker透明挂!aapoker ai软件,(aapoker教程)本来是有挂(详细辅助力荐教程)...
wpk真的有外挂!wpk微扑克... wpk真的有外挂!wpk微扑克智能辅助(透视)外挂透视辅助器(原来真的是有挂);小薇(透视辅助)致您...
微扑克辅助器ios(微扑克)微... 微扑克辅助器ios(微扑克)微扑克真的有辅助吗(透视)原来是真的有挂(详细辅助专业教程)暗藏猫腻,小...
5分钟实锤!德扑之星有作弊(来... 5分钟实锤!德扑之星有作弊(来玩德州)总是是有挂(详细辅助曝光教程)1、德扑之星有作弊透视辅助简单,...