From 89a49a96ccc152c05f7460abde528fd299aee7d9 Mon Sep 17 00:00:00 2001 From: zhanyun Date: Mon, 11 Apr 2016 22:00:01 +0800 Subject: [PATCH] gather removed some log output --- .../main/java/org/ossean/gather/process/GatherThread.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gather_program/src/main/java/org/ossean/gather/process/GatherThread.java b/gather_program/src/main/java/org/ossean/gather/process/GatherThread.java index 32050e3..36f8e81 100644 --- a/gather_program/src/main/java/org/ossean/gather/process/GatherThread.java +++ b/gather_program/src/main/java/org/ossean/gather/process/GatherThread.java @@ -73,7 +73,7 @@ public class GatherThread implements Runnable { @Override public void run() { - long start = System.currentTimeMillis(); +// long start = System.currentTimeMillis(); Thread.currentThread().setName(sourceTableName); idsIncrement = conf.getIdsIncrement(); idsBegin = readPointer(conf.getPointerTableName(), sourceTableName, @@ -92,8 +92,8 @@ public class GatherThread implements Runnable { } } GatherProcess.gatherState.put(sourceTableName, false); - long end = System.currentTimeMillis(); - logger.info((end - start) / 6000); +// long end = System.currentTimeMillis(); +// logger.info((end - start) / 6000); } public void handleBatchData(int beginId, int endId, Configure conf) {