https://delta.io logo
o

Ovi

05/19/2023, 3:45 PM
Hello everyone, 😅 I have an intermittent issue when trying to create a Delta table the first time in Databricks: all the data gets converted into parquet at the specified location but the
__delta__log
is not created or, if created, it's left empty, thus the resulted data folder isn't considered to be a Delta table. The command it's a basic one:
Copy code
sourceDf.write
    .format("delta")
    .mode(SaveMode.ErrorIfExists)
    .partitionBy("date")
    .option("mergeSchema", "true")
    .save(deltaLocation)
If anyone has an idea on this, please share... Thank you in advance, Ovi
n

Nick Karpov

05/19/2023, 4:27 PM
strange! i would check with databricks support on this one
66 Views