Yousry Mohamed
07/04/2023, 10:25 AMUniForm
feature, it seems it creates iceberg metadata in v1 format if I am not wrong. Is there any way to write iceberg in v2 format? Many tools like AWS Athena (and probably BigQuery as well) support iceberg v2 not v1. I could be wrong as well re last statement but could not really get BigQuery to understand iceberg metadata produced by delta lake.Sirui Sun
07/12/2023, 2:24 PMcould not really get BigQuery to understand iceberg metadata produced by delta lake.Could you share the error you’re seeing?
Yousry Mohamed
07/12/2023, 10:07 PMspark.read.format("iceberg").load("gs://<my-bucket>/table4").show()
The following screenshots show the delta table root folder and iceberg metadata folder respectively.Sirui Sun
07/13/2023, 5:17 PMspark.databricks.delta.write.dataFilesToSubdir
to true
Yousry Mohamed
07/13/2023, 10:54 PMSirui Sun
07/18/2023, 12:03 AM