ElapsedSoul opened a new issue, #4837: URL: https://github.com/apache/iceberg/issues/4837
where to get started for iceberg? for this page:[jara api quickstart for create a table](https://iceberg.apache.org/docs/latest/java-api-quickstart/#create-a-table) ```java import org.apache.iceberg.hive.HiveCatalog; Catalog catalog = new HiveCatalog(); catalog.setConf(spark.sparkContext().hadoopConfiguration()); // Configure using Spark's Hadoop configuration Map <String, String> properties = new HashMap<String, String>(); properties.put("warehouse", "..."); properties.put("uri", "..."); catalog.initialize("hive", properties); ``` this demo do not import the `Catalog` -- 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]
