How to stop continuous running streaming job over weekend

sanjay
Valued Contributor II

I have an continuous running streaming Job, I would like to stop this over weekend and start again on Monday. Here is my streaming job code.

(spark.readStream.format("delta").load(input_path)

.writeStream

.option("checkpointLocation", input_checkpoint_path)

.trigger(processingTime="1 minute")

.foreachBatch(foreachBatchFunction)

.start()

)

Regards

Sanjay