renamed output file

This commit is contained in:
Enrico Ottonello 2020-04-20 12:32:03 +02:00
parent 4ae55e3891
commit a466648b4b
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class OrcidDSManager {
FileSystem fs = initFileSystemObject(conf);
String tarGzUri = hdfsServerUri.concat(hdfsOrcidDefaultPath).concat(summariesFileNameTarGz);
logger.info("Started parsing "+tarGzUri);
Path outputPath = new Path(hdfsServerUri.concat(hdfsOrcidDefaultPath).concat(outputAuthorsPath).concat(Long.toString(System.currentTimeMillis())).concat("/authors_part"));
Path outputPath = new Path(hdfsServerUri.concat(hdfsOrcidDefaultPath).concat(outputAuthorsPath).concat(Long.toString(System.currentTimeMillis())).concat("/authors.seq"));
SummariesDecompressor.parseGzSummaries(conf, tarGzUri, outputPath);
}