mirror of https://github.com/apache/druid.git
RealtimePlumberSchool: Alert and continue on any exception when abandoning segments
This commit is contained in:
parent
4d83837e88
commit
837dee1934
|
@ -712,7 +712,7 @@ public class RealtimePlumberSchool implements PlumberSchool
|
||||||
handoffCondition.notifyAll();
|
handoffCondition.notifyAll();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (IOException e) {
|
catch (Exception e) {
|
||||||
log.makeAlert(e, "Unable to abandon old segment for dataSource[%s]", schema.getDataSource())
|
log.makeAlert(e, "Unable to abandon old segment for dataSource[%s]", schema.getDataSource())
|
||||||
.addData("interval", sink.getInterval())
|
.addData("interval", sink.getInterval())
|
||||||
.emit();
|
.emit();
|
||||||
|
|
Loading…
Reference in New Issue