Ovi
05/19/2023, 3:45 PM__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:
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,
OviNick Karpov
05/19/2023, 4:27 PM