forked from antonis.lempesis/dnet-hadoop
using Encoders.bean instead of kryo
This commit is contained in:
parent
73243793b2
commit
5b3f8a0e90
|
@ -71,20 +71,15 @@ public class SparkCountryPropagationJob3 {
|
|||
Class<? extends Result> resultClazz = (Class<? extends Result>) Class.forName(resultClassName);
|
||||
|
||||
SparkConf conf = new SparkConf();
|
||||
conf.registerKryoClasses(ModelSupport.getOafModelClasses());
|
||||
|
||||
runWithSparkSession(
|
||||
conf,
|
||||
isSparkSessionManaged,
|
||||
spark -> {
|
||||
|
||||
execPropagation(
|
||||
spark -> execPropagation(
|
||||
spark,
|
||||
inputPath,
|
||||
outputPath,
|
||||
resultClazz,
|
||||
saveGraph);
|
||||
});
|
||||
saveGraph));
|
||||
}
|
||||
|
||||
private static <R extends Result> void execPropagation(
|
||||
|
@ -101,7 +96,7 @@ public class SparkCountryPropagationJob3 {
|
|||
spark
|
||||
.read()
|
||||
.json(inputPath)
|
||||
.as(Encoders.kryo(resultClazz))
|
||||
.as(Encoders.bean(resultClazz))
|
||||
.groupByKey((MapFunction<R, String>) result1 -> result1.getId(), Encoders.STRING())
|
||||
.mapGroups(getCountryMergeFn(resultClazz), Encoders.bean(resultClazz))
|
||||
.write()
|
||||
|
|
Loading…
Reference in New Issue