Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 06:59 AM
ok so you already have a df with your json data (with inferred schema).
Next step is:
df.write \
.format("delta") \
.mode("overwrite") \
.save("<whereveryouwanttostoreyourdata>")