https://delta.io logo
s

satya

07/11/2023, 1:56 PM
CREATE OR REPLACE TABLE customer (name STRING, age INT) USING DELTA TBLPROPERTIES('delta.universalFormat.enabledFormats' = 'iceberg');. insert into customer values ('satya',10); 23/07/11 085557 ERROR DeltaLog: Failed to find Iceberg converter class java.lang.ClassNotFoundException: org.apache.spark.sql.delta.icebergShaded.IcebergConverter.
Below is my spark sql config. ~/spark/bin/spark-sql --packages io.deltadelta spark 2.123.0.0rc1 \ --conf "spark.sql.extensions=io.delta.sql.DeltaSparkSessionExtension" \ --conf "spark.sql.catalog.spark_catalog=org.apache.spark.sql.delta.catalog.DeltaCatalog"
s

Scott Sandre (Delta Lake)

07/12/2023, 4:16 PM
Can you try including the package
io.delta:delta-iceberg_2.12:3.0.0rc1
as well?
3 Views