对于正常查询,(like count(*) or select *)
下面的命令可以高效运行 -
set hive.cbo.enable=true;
set hive.compute.query.using.stats=true;
set hive.stats.fetch.column.stats=true;
set hive.stats.fetch.partition.stats=true;
但是对于加入操作,该操作成功运行而没有上述命令但是使用上述命令会引发错误 -
您的查询有以下错误:
无效的OperationHandle:OperationHandle [opType = EXECUTE_STATEMENT, getHandleIdentifier()= 3583d1d1-373f-4937-846a-e6401a7ff872]
有谁能给我答案,拜托?