Aggarwal-Raghav opened a new issue, #7924: URL: https://github.com/apache/iceberg/issues/7924
### Query engine Hive ### Question I am new to iceberg and trying to read the data from hive table but the output of select query is empty: **Iceberg Version:1.3.0 Hive version: 3.1.2 Hadoop Version: 3.2.2 Tez Version: 0.10.1 Execution Engine=tez** ``` ADD JAR /home/hive/iceberg-hive-runtime-1.3.0.jar; SET iceberg.engine.hive.enabled=true; SET engine.hive.enabled=true; SET hive.vectorized.execution.enabled=false; SET iceberg.mr.catalog=hive; CREATE EXTERNAL TABLE test_tbl (id int) STORED BY 'org.apache.iceberg.mr.hive.HiveIcebergStorageHandler'; INSERT INTO test_tbl values (1); select * from test_tbl; ``` Insert is working fine and in hdfs also the .parquet file is getting generated and when I decode that parquet file using parquet-tools, I can see the data which I wrote using insert query. But when I perform select operation, it show no data. Here is the output: ``` +-----+ | id | +-----+ +-----+ ``` What am I missing? Thanks -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
