myfjdthink commented on issue #10452: URL: https://github.com/apache/doris/issues/10452#issuecomment-1177395118
I try to fix this issue this is the [changed files](https://github.com/apache/doris/compare/1.1.0-preview2...myfjdthink:feat-support-iceberg-on-gcs?expand=1) Iceberg 0.12 doesn't support gcs yet, so I upgraded Iceberg to 0.13.2 to support gcs With this, I was able to create tables ```sql CREATE TABLE `gs_table` ENGINE = ICEBERG PROPERTIES ( "iceberg.database" = "gsdb", "iceberg.table" = "gs_table2", "iceberg.hive.metastore.uris" = "thrift://10.201.0.104:9083", "iceberg.catalog.type" = "HIVE_CATALOG" ); ``` But I got an error when reading the table ```sql select * from iceberg_db.gs_table; ``` Error message ``` errCode = 2, detailMessage = connect failed. gs://iceberg-spark-xxx ``` -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org