File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/ldbc/socialnet/dbgen/generator Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -610,9 +610,10 @@ public int runGenerateJob(Configuration conf) throws Exception {
610
610
max = auxMax > max ? auxMax : max ;
611
611
numEvents += Long .parseLong (properties .getProperty ("num_events" ));
612
612
}
613
-
613
+ file .close ();
614
+ file = fs .open (new Path (conf .get ("outputDir" ) + "/social_network/updateStream_" + i + "_" + j + "_forum.properties" ));
615
+ properties .load (file );
614
616
if ( properties .getProperty ("min_write_event_start_time" ) != null ) {
615
- properties .load (fs .open (new Path (conf .get ("outputDir" ) + "/social_network/updateStream_" + i + "_" + j + "_forum.properties" )));
616
617
Long auxMin = Long .parseLong (properties .getProperty ("min_write_event_start_time" ));
617
618
min = auxMin < min ? auxMin : min ;
618
619
Long auxMax = Long .parseLong (properties .getProperty ("max_write_event_start_time" ));
You can’t perform that action at this time.
0 commit comments