Himanshu Gwalani created PHOENIX-7920:
-----------------------------------------
Summary: Add replay-side handling for direct DEGRADED_STANDBY →
STANDBY_TO_ACTIVE transition (ANISTS → AISTS)
Key: PHOENIX-7920
URL: https://issues.apache.org/jira/browse/PHOENIX-7920
Project: Phoenix
Issue Type: Sub-task
Reporter: Himanshu Gwalani
Assignee: Himanshu Gwalani
The replay service can get stuck in an infinite loop if there is a persistent
issue while processing older files in the in-progress directory.
{code:java}
files = replicationLogTracker.getOlderInProgressFiles(oldestTimestampToProcess);
while (!files.isEmpty()) {
processOneRandomFile(files);
files =
replicationLogTracker.getOlderInProgressFiles(oldestTimestampToProcess);
} {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)