akka.persistence.RecoveryTimedOut: Recovery timed out, didn't get event within 30000 milliseconds, highest sequence number seen 0

485 views
Skip to first unread message

Swagt

unread,
Jun 14, 2018, 12:05:54 AM6/14/18
to Akka User List
Persistence failure when replaying events for persistenceId [persistence-node]. Last known sequence number [0] akka.persistence.RecoveryTimedOut: Recovery timed out, didn't get event within 30000 milliseconds, highest sequence number seen 0

Sometimes We encountered this problem at startup actor, we used akka2.4.17, persistence config as below. What is this problem and how can we solve it?

 persistence {
      journal {
        plugin = "akka.persistence.journal.leveldb"
        leveldb {
          dir = "data/platformClusterJournal"
        }
      }
      snapshot-store {
        local {
            dir = "data/platformClusterSnapshots"
        }
      }
    }


Cameron Shellum

unread,
Jan 18, 2019, 1:08:20 AM1/18/19
to Akka User List
The Akka Persistence source references a config value that can be modified as follows:
akka {
  persistence {
    journal-plugin-fallback {
      recovery-event-timeout = 60s
    }
  }
}
Reply all
Reply to author
Forward
0 new messages