I run Apache Spark as a standalone.
I have 2 Spark applications and these connected to Apache Spark with master URL:
var config = new SparkConf()
.Set("spark.driver.host", "localhost").
SetMaster("spark://localhost:7077");
The first application reads data from CSV and shares this data frame in some way
DataFrame dataFrame = spark.Read().Text("input.txt");
The second application needs to access this shared data frame.
How can I do this? Is it possible?