Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2024 12:54 AM
Hi,
have You tried changing the checkpoint location path?
I used that below syntax previously and it worked fine for me:
stream = (
df.writeStream
.format("delta")
.trigger(availableNow=True)
.option("checkpointLocation", checkpoint_location)
.foreachBatch(...)
.start()
)