I am trying to understand how state in Spark Streaming works in general. If I run this example program twice will the second run see state from the first run? https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/examples/streaming/StatefulNetworkWordCount.scala
It seems no. Is there a way how to achieve this? I am thinking about redeploying an application an I would like not to loose the current state. Thanks