1

may I know is it correct that the delta lake file extension is *.snappy.parquet ??
I use the code

 df.write.format('delta').save(blobpath)

any one has the idea ???

mytabi
  • 639
  • 2
  • 12
  • 28

1 Answers1

0

Yes, that's correct. Delta is built on top of the Parquet files as storage format, and adds additional capabilities such as transactions, ...

P.S. this is answered in the Delta's FAQ

Alex Ott
  • 80,552
  • 8
  • 87
  • 132