我的hive表是一个托管表,我可以看到HDFS中存在的文件。通过hive查询时不显示任何结果
hive> describe formatted emp
Result -
| Table Type: | MANAGED_TABLE
| Table Parameters: | NULL
| 2 | bucketing_version
| 1376 | numFiles
| 43 | numPartitions
| 0 | numRows
| gzip | parquet.compression
| 0 | rawDataSize
| 4770821594 | totalSize
| true | transactional
| insert_only | transactional_properties
| 1612857428 | transient_lastDdlTime
从表-中选择数据时Select * from emp;它没有得到任何结果。为什么HDFS和select output有差异
Command for me -
ANALYZE TABLE table_name COMPUTE STATISTICS FOR COLUMNS;