How Do i stop spark streaming? My spark streaming job is running continuously. I want to stop in a graceful manner.
I have seen below option to shutdown streaming application.
sparkConf.set("spark.streaming.stopGracefullyOnShutdown","true")
Spark configuration: available properties
But, how do i update this parameter on a running application?