mirror of https://github.com/apache/druid.git
Merge pull request #392 from liquidm/improve_realtime_metrics
consider errors in reading from firehose as unparsable
This commit is contained in:
commit
9c55e2b779
|
@ -182,8 +182,8 @@ public class RealtimeManager implements QuerySegmentWalker
|
||||||
inputRow = firehose.nextRow();
|
inputRow = firehose.nextRow();
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
log.info(e, "thrown away line due to exception");
|
log.debug(e, "thrown away line due to exception, considering unparseable");
|
||||||
metrics.incrementThrownAway();
|
metrics.incrementUnparseable();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue