Exemplo n.º 1
0
 /** Get whether to start skipping mode. */
 private boolean startSkipping() {
   if (maxSkipRecords > 0 && numTaskFailures >= SkipBadRecords.getAttemptsToStartSkipping(conf)) {
     return true;
   }
   return false;
 }