Why did syncing my participation node stall?

I’ve been syncing a participation node on a Linux server for a few days now. I have approximately 11 million blocks synced, but the node seems to have stopped syncing and I can’t seem to figure out how to troubleshoot the issue.

Here’s the output of ./goal -v:

8590327808
2.6.0.stable [rel/stable] (commit #8fe22d4e)
go-algorand is licensed with AGPLv3.0
source code available at GitHub - algorand/go-algorand: Algorand's official implementation in Go.

Here is the output of ./goal node status -d data:

Last committed block: 11912309
Time since last block: 0.0s
Sync Time: 0.0s
Last consensus protocol: GitHub - algorandfoundation/specs at 3a83c4c743f8b17adfd73944b4319c25722a6782
Next consensus protocol: GitHub - algorandfoundation/specs at 3a83c4c743f8b17adfd73944b4319c25722a6782
Round for next consensus protocol: 11912310
Next consensus protocol supported: true
Last Catchpoint:
Genesis ID: mainnet-v1.0
Genesis hash: wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=

Here is the output of cat data/node.log | tail:

{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).fetchAndWrite”,“level”:“warning”,“line”:268,“msg”:“fetchAndWrite(11912319): lookback block doesn’t exist, cannot authenticate new block”,“name”:"",“time”:“2021-05-29T01:12:00.655331+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).pipelineCallback.func1”,“level”:“info”,“line”:360,“msg”:“failed to fetch block 11912319”,“name”:"",“time”:“2021-05-29T01:12:00.655521+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).fetchAndWrite”,“level”:“warning”,“line”:268,“msg”:“fetchAndWrite(11912321): lookback block doesn’t exist, cannot authenticate new block”,“name”:"",“time”:“2021-05-29T01:12:00.655693+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).pipelineCallback.func1”,“level”:“info”,“line”:360,“msg”:“failed to fetch block 11912321”,“name”:"",“time”:“2021-05-29T01:12:00.655823+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).fetchAndWrite”,“level”:“warning”,“line”:268,“msg”:“fetchAndWrite(11912323): lookback block doesn’t exist, cannot authenticate new block”,“name”:"",“time”:“2021-05-29T01:12:00.655983+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).pipelineCallback.func1”,“level”:“info”,“line”:360,“msg”:“failed to fetch block 11912323”,“name”:"",“time”:“2021-05-29T01:12:00.656097+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).fetchAndWrite”,“level”:“warning”,“line”:268,“msg”:“fetchAndWrite(11912325): lookback block doesn’t exist, cannot authenticate new block”,“name”:"",“time”:“2021-05-29T01:12:00.656254+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).pipelineCallback.func1”,“level”:“info”,“line”:360,“msg”:“failed to fetch block 11912325”,“name”:"",“time”:“2021-05-29T01:12:00.656444+01:00”}
{“Context”:“sync”,“details”:{“StartRound”:11912309,“EndRound”:11912309,“Time”:453562660,“InitSync”:false},“file”:“telemetry.go”,“function”:“github.com/algorand/go-algorand/logging.(*telemetryState).logTelemetry”,“instanceName”:“PCZtOCd5Er90Q8nE”,“level”:“info”,“line”:212,“msg”:"/ApplicationState/CatchupStop",“name”:"",“session”:"",“time”:“2021-05-29T01:12:00.656644+01:00”}
{“Context”:“sync”,“file”:“service.go”,“function”:“github.com/algorand/go-algorand/catchup.(*Service).sync”,“level”:“info”,“line”:587,“msg”:“Catchup Service: finished catching up, now at round 11912309 (previously 11912309). Total time catching up 453.56266ms.”,“name”:"",“time”:“2021-05-29T01:12:00.656827+01:00”}

I’m not sure why it suddenly stopped syncing, but I would really appreciate any assistance. Thanks!