Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2023 10:04 AM
@vkuznetsov - As a workaround, can you please try converting the streaming table to a regular table using a stand-alone/periodic job and use it for Delta sharing?
spark.readStream.table("<streaming-table>")
.writeStream
.option("checkpointLocation", "dbfs:/checkpoints/checkpoint_bar_1")
.partitionBy("<partition-column>")
.toTable("<delta-table>")