Skip to content

Commit 3649061

Browse files
HIVE-29037: Negative elapsed time logging in HiveSplitGenerator
1 parent a805bce commit 3649061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/src/java/org/apache/hadoop/hive/ql/exec/tez/HiveSplitGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ void writeSplit(int count, MRSplitProto mrSplit, Path filePath) throws IOExcepti
241241
mrSplit.writeTo(out);
242242
}
243243
LOG.debug("Split #{} event to output path: {} written in {} ms", count, filePath,
244-
fileWriteStarted - Time.monotonicNow());
244+
Time.monotonicNow() - fileWriteStarted);
245245
}
246246

247247
Path getSerializedFilePath(int index) {

0 commit comments

Comments
 (0)