Add debug log for retention leases (#42557)
We need more information to understand why CcrRetentionLeaseIT is failing. This commit adds some debug log to retention leases and enables them in CcrRetentionLeaseIT.
This commit is contained in:
parent
5d2fcc53e4
commit
85e60850af
|
@ -221,12 +221,15 @@ public class ReplicationTracker extends AbstractIndexShardComponent implements L
|
|||
.leases()
|
||||
.stream()
|
||||
.collect(Collectors.groupingBy(lease -> currentTimeMillis - lease.timestamp() > retentionLeaseMillis));
|
||||
if (partitionByExpiration.get(true) == null) {
|
||||
final Collection<RetentionLease> expiredLeases = partitionByExpiration.get(true);
|
||||
if (expiredLeases == null) {
|
||||
// early out as no retention leases have expired
|
||||
logger.debug("no retention leases are expired from current retention leases [{}]", retentionLeases);
|
||||
return Tuple.tuple(false, retentionLeases);
|
||||
}
|
||||
final Collection<RetentionLease> nonExpiredLeases =
|
||||
partitionByExpiration.get(false) != null ? partitionByExpiration.get(false) : Collections.emptyList();
|
||||
logger.debug("expiring retention leases [{}] from current retention leases [{}]", expiredLeases, retentionLeases);
|
||||
retentionLeases = new RetentionLeases(operationPrimaryTerm, retentionLeases.version() + 1, nonExpiredLeases);
|
||||
return Tuple.tuple(true, retentionLeases);
|
||||
}
|
||||
|
@ -255,6 +258,7 @@ public class ReplicationTracker extends AbstractIndexShardComponent implements L
|
|||
throw new RetentionLeaseAlreadyExistsException(id);
|
||||
}
|
||||
retentionLease = new RetentionLease(id, retainingSequenceNumber, currentTimeMillisSupplier.getAsLong(), source);
|
||||
logger.debug("adding new retention lease [{}] to current retention leases [{}]", retentionLease, retentionLeases);
|
||||
retentionLeases = new RetentionLeases(
|
||||
operationPrimaryTerm,
|
||||
retentionLeases.version() + 1,
|
||||
|
@ -312,6 +316,7 @@ public class ReplicationTracker extends AbstractIndexShardComponent implements L
|
|||
if (retentionLeases.contains(id) == false) {
|
||||
throw new RetentionLeaseNotFoundException(id);
|
||||
}
|
||||
logger.debug("removing retention lease [{}] from current retention leases [{}]", id, retentionLeases);
|
||||
retentionLeases = new RetentionLeases(
|
||||
operationPrimaryTerm,
|
||||
retentionLeases.version() + 1,
|
||||
|
|
|
@ -88,7 +88,7 @@ import static org.hamcrest.Matchers.equalTo;
|
|||
import static org.hamcrest.Matchers.greaterThan;
|
||||
import static org.hamcrest.Matchers.hasSize;
|
||||
|
||||
@TestLogging(value = "org.elasticsearch.xpack.ccr:trace,org.elasticsearch.indices.recovery:trace")
|
||||
@TestLogging(value = "org.elasticsearch.xpack.ccr:trace,org.elasticsearch.indices.recovery:trace,org.elasticsearch.index.seqno:debug")
|
||||
public class CcrRetentionLeaseIT extends CcrIntegTestCase {
|
||||
|
||||
public static final class RetentionLeaseRenewIntervalSettingPlugin extends Plugin {
|
||||
|
|
Loading…
Reference in New Issue