Spark Streaming does not display any record on application UI
问题 I am new to spark and I am trying to run a simple spark streaming application that reads data from a csv file and displays it. Seems like spark streaming works but it still shows "0" records on the Streaming UI application.Here is my code: public class App { public static void main(String[] args) throws Exception { // Get an instance of spark-conf, required to build the spark session SparkConf conf = new SparkConf().setAppName("StreamingExample").setMaster("local"); JavaStreamingContext jsc =