gather removed some log output
This commit is contained in:
parent
25bca51ab7
commit
89a49a96cc
|
@ -73,7 +73,7 @@ public class GatherThread implements Runnable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
long start = System.currentTimeMillis();
|
// long start = System.currentTimeMillis();
|
||||||
Thread.currentThread().setName(sourceTableName);
|
Thread.currentThread().setName(sourceTableName);
|
||||||
idsIncrement = conf.getIdsIncrement();
|
idsIncrement = conf.getIdsIncrement();
|
||||||
idsBegin = readPointer(conf.getPointerTableName(), sourceTableName,
|
idsBegin = readPointer(conf.getPointerTableName(), sourceTableName,
|
||||||
|
@ -92,8 +92,8 @@ public class GatherThread implements Runnable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
GatherProcess.gatherState.put(sourceTableName, false);
|
GatherProcess.gatherState.put(sourceTableName, false);
|
||||||
long end = System.currentTimeMillis();
|
// long end = System.currentTimeMillis();
|
||||||
logger.info((end - start) / 6000);
|
// logger.info((end - start) / 6000);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void handleBatchData(int beginId, int endId, Configure conf) {
|
public void handleBatchData(int beginId, int endId, Configure conf) {
|
||||||
|
|
Loading…
Reference in New Issue