mirror of https://github.com/apache/druid.git
1) add a log line on plumber creation to make it easier to know what rejection policy is being used.
This commit is contained in:
parent
790ba59244
commit
1e35913579
|
@ -242,6 +242,7 @@ public class RealtimePlumberSchool implements PlumberSchool
|
|||
final long truncatedNow = segmentGranularity.truncate(new DateTime()).getMillis();
|
||||
final long windowMillis = windowPeriod.toStandardDuration().getMillis();
|
||||
final RejectionPolicy rejectionPolicy = rejectionPolicyFactory.create(windowPeriod);
|
||||
log.info("Creating plumber using rejectionPolicy[%s]", rejectionPolicy);
|
||||
|
||||
log.info(
|
||||
"Expect to run at [%s]",
|
||||
|
@ -553,7 +554,7 @@ public class RealtimePlumberSchool implements PlumberSchool
|
|||
public class ServerTimeRejectionPolicyFactory implements RejectionPolicyFactory
|
||||
{
|
||||
@Override
|
||||
public RejectionPolicy create(Period windowPeriod)
|
||||
public RejectionPolicy create(final Period windowPeriod)
|
||||
{
|
||||
final long windowMillis = windowPeriod.toStandardDuration().getMillis();
|
||||
|
||||
|
@ -570,6 +571,12 @@ public class RealtimePlumberSchool implements PlumberSchool
|
|||
{
|
||||
return timestamp >= (System.currentTimeMillis() - windowMillis);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return String.format("serverTime-%s", windowPeriod);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -577,7 +584,7 @@ public class RealtimePlumberSchool implements PlumberSchool
|
|||
public class MessageTimeRejectionPolicyFactory implements RejectionPolicyFactory
|
||||
{
|
||||
@Override
|
||||
public RejectionPolicy create(Period windowPeriod)
|
||||
public RejectionPolicy create(final Period windowPeriod)
|
||||
{
|
||||
final long windowMillis = windowPeriod.toStandardDuration().getMillis();
|
||||
|
||||
|
@ -598,6 +605,12 @@ public class RealtimePlumberSchool implements PlumberSchool
|
|||
|
||||
return timestamp >= (maxTimestamp - windowMillis);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return String.format("messageTime-%s", windowPeriod);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue