Нет, вы можете получить доступ напрямую, используя набор данных, как показано ниже -
LongAccumulator longAccum = spark.sparkContext().longAccumulator("my accum");
Dataset<Row> df = spark.range(100).withColumn("x", lit("x"));
//access in map
df.map((MapFunction<Row, Row>) row -> {
longAccum.add(1);
return row;
}, RowEncoder.apply(df.schema()))
.count();
// accumulator value
System.out.println(longAccum.value()); // 100
longAccum.reset();
// access in for each
df.foreach((ForeachFunction<Row>) row -> longAccum.add(1));
// accumulator value
System.out.println(longAccum.value()); // 100
Обратите внимание, что значение аккумулятора обновляется только при выполнении action
.
Использование Streaming dataframe
longAccum.reset();
/**
* streaming dataframe from csv dir
* test.csv
* --------
* csv
* id,name
* 1,bob
* 2,smith
* 3,jam
* 4,dwayne
* 5,mike
*/
String fileDir = getClass().getResource("/" + "csv").getPath();
StructType schema = new StructType()
.add(new StructField("id", DataTypes.LongType, true, Metadata.empty()))
.add(new StructField("name", DataTypes.StringType, true, Metadata.empty()));
Dataset<Row> json = spark.readStream().schema(schema).option("header", true).csv(fileDir);
StreamingQuery streamingQuery = json
.map((MapFunction<Row, Row>) row -> {
longAccum.add(1);
return row;
}, RowEncoder.apply(df.schema()))
.writeStream()
.format("console").start();
streamingQuery.processAllAvailable();
// accumulator value
System.out.println(longAccum.value()); // 5