FIX: GroupEntitiesSparkJob deletes whole graph outputPath instead of its temporary folder

This commit is contained in:
Giambattista Bloisi 2023-10-17 07:54:01 +02:00
parent 6cf64d5d8b
commit 0e44b037a5
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class GroupEntitiesSparkJob {
conf,
isSparkSessionManaged,
spark -> {
HdfsSupport.remove(outputPath, spark.sparkContext().hadoopConfiguration());
HdfsSupport.remove(checkpointPath, spark.sparkContext().hadoopConfiguration());
groupEntities(spark, graphInputPath, checkpointPath, outputPath, filterInvisible);
});
}