Skip to content

Instantly share code, notes, and snippets.

@KeesCBakker
Created November 9, 2019 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KeesCBakker/a9ac86ac2cd3a586cbd044905586a84c to your computer and use it in GitHub Desktop.
Save KeesCBakker/a9ac86ac2cd3a586cbd044905586a84c to your computer and use it in GitHub Desktop.
w = df.writeStream;
if not streaming:
w = w.trigger(once=True)
(w.format("delta")
.option("checkpointLocation", checkpoint_location)
.foreachBatch(upsertToDelta)
.outputMode("update")
.start(delta_location))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment