mirror of https://github.com/apache/druid.git
Improve streaming ingestion completion timeout error message (#14636)
* Improve streaming ingestion completion timeout error message Co-authored-by: Kashif Faraz <kashif.faraz@gmail.com> Co-authored-by: Benedict Jin <asdf2014@apache.org>
This commit is contained in:
parent
194a9c9abc
commit
bd505062de
|
@ -3431,7 +3431,9 @@ public abstract class SeekableStreamSupervisor<PartitionIdType, SequenceOffsetTy
|
|||
log.warn("All tasks in group [%d] failed to publish, killing all tasks for these partitions", groupId);
|
||||
} else {
|
||||
log.makeAlert(
|
||||
"No task in [%s] for taskGroup [%d] succeeded before the completion timeout elapsed [%s]!",
|
||||
"No task in [%s] for taskGroup [%d] succeeded before the completion timeout elapsed [%s]! "
|
||||
+ "Check metrics and logs to see if the creation, publish or handoff"
|
||||
+ " of any segment is taking longer than usual.",
|
||||
group.taskIds(),
|
||||
groupId,
|
||||
ioConfig.getCompletionTimeout()
|
||||
|
|
Loading…
Reference in New Issue