使用Storm实现实时大数据分析!

long curTime = System.currentTimeMillis();  
  •        long diffInSeconds = (curTime-startTime)/(60*1000);  
  •        if(counter.get()<batchSize && diffInSeconds>batchTimeWindowInSeconds)  
  •        {  
  •             try {  
  •                 executeBatch();  
  •                 startTime = System.currentTimeMillis();  
  •             }  
  •             catch (SQLException e) {  
  •                  e.printStackTrace();  
  •             }