junsionzhang opened a new issue #2357:
URL: https://github.com/apache/iceberg/issues/2357
I have setup the hive ,flink and iceberg
1)create iceberg table using flink
CREATE CATALOG hive_catalog WITH (
'type'='iceberg',
'catalog-type'='hive',
'uri'='thrift://192.168.100.101:9083',
'clients'='5',
'property-version'='1',
'warehouse'='hdfs://192.168.100.101:9000/hive/warehouse/iceberg'
);
CREATE TABLE hive_catalog.iceberg.sample (
id BIGINT COMMENT 'unique id',
data STRING
);
2) insert data into sample
insert into sample values(1,'a'),(2,'b');
insert into sample values(3,'c'),(4,'d');
3) lauch hive and execute sql
when doing 'show tables' ,it works fine and I can see the table sample
**but when doing 'select * from sample', no more data can be seen.**
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]