Commit b6ecda11 authored by 赵建伟's avatar 赵建伟

update codes

parent 54065e39
...@@ -172,10 +172,12 @@ public class PortraitMonitorShdOperator implements BaseOperator{ ...@@ -172,10 +172,12 @@ public class PortraitMonitorShdOperator implements BaseOperator{
++count; ++count;
} }
} }
if(count > 0){
String currentTimeStr = DateUtils.getCurrentTimeStr(date); String currentTimeStr = DateUtils.getCurrentTimeStr(date);
TblMonitorPortraitShd tblMonitorPortraitShd = new TblMonitorPortraitShd(key.getField(0), count, currentTimeStr); TblMonitorPortraitShd tblMonitorPortraitShd = new TblMonitorPortraitShd(key.getField(0), count, currentTimeStr);
out.collect(tblMonitorPortraitShd); out.collect(tblMonitorPortraitShd);
} }
}
}); });
process.print(); process.print();
process.addSink(new PortraitShdMysqlSink(outJdbcUrl,maxRetry,retryInteral)) process.addSink(new PortraitShdMysqlSink(outJdbcUrl,maxRetry,retryInteral))
......
...@@ -83,15 +83,17 @@ public class PortraitMonitorSucOperator implements BaseOperator{ ...@@ -83,15 +83,17 @@ public class PortraitMonitorSucOperator implements BaseOperator{
long currentTimestamp = DateUtils.getCurrentTimestamp(date); long currentTimestamp = DateUtils.getCurrentTimestamp(date);
long tenMinitesAgoTimestamp = DateUtils.getTenMinitesAgoTimestamp(date); long tenMinitesAgoTimestamp = DateUtils.getTenMinitesAgoTimestamp(date);
for (GmPortraitResult element : elements) { for (GmPortraitResult element : elements) {
long logTime = Long.valueOf(element.getLog_time()); long logTime = Long.valueOf(Math.round(Double.valueOf(element.getLog_time())));
if(logTime >= tenMinitesAgoTimestamp && logTime <= currentTimestamp){ if(logTime >= tenMinitesAgoTimestamp && logTime <= currentTimestamp){
++ count; ++ count;
} }
} }
if(count > 0){
String currentTimeStr = DateUtils.getCurrentTimeStr(date); String currentTimeStr = DateUtils.getCurrentTimeStr(date);
TblMonitorPortraitSuc tblMonitorPortraitSuc = new TblMonitorPortraitSuc(key.getField(0), count, currentTimeStr); TblMonitorPortraitSuc tblMonitorPortraitSuc = new TblMonitorPortraitSuc(key.getField(0), count, currentTimeStr);
out.collect(tblMonitorPortraitSuc); out.collect(tblMonitorPortraitSuc);
} }
}
}) })
.addSink(new PortraitSucMysqlSink(outJdbcUrl,maxRetry,retryInteral)) .addSink(new PortraitSucMysqlSink(outJdbcUrl,maxRetry,retryInteral))
.setParallelism(parallelism); .setParallelism(parallelism);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment