SUI FullNode Mainnet setup

Hi Everyone,

I have done the SUI fullnode mainnet setup using docker by following the below doc. sui/docker/fullnode at main · MystenLabs/sui · GitHub

but when i am checking the logs i encountered the error as mentioned below:-

2023-06-05T17:36:38.172882Z INFO sui_core::checkpoints::checkpoint_executor: Checkpoint execution took 634.359529ms seq=815000
2023-06-05T17:36:42.739470Z INFO sui_core::checkpoints::checkpoint_executor: Finished syncing and executing checkpoint 815000
2023-06-05T17:38:47.168460Z INFO schedule_checkpoint{seq=820000 epoch=7}: sui_core::checkpoints::checkpoint_executor: Checkpoint preparation for execution took 508.591µs
2023-06-05T17:38:47.171747Z INFO sui_core::checkpoints::checkpoint_executor: Checkpoint execution took 3.29133ms seq=820000
2023-06-05T17:38:52.094778Z INFO sui_core::checkpoints::checkpoint_executor: Finished syncing and executing checkpoint 820000
2023-06-05T17:40:56.387195Z ERROR execution_driver{tx_digest=TransactionDigest(EzQ1EHTYXKheA4rzF3GSUUVffaAJeaF7PWFMXoBTvzV)}: sui_adapter_latest::execution_engine: INVARIANT VIOLATION! Source: Some(VMError { major_status: TYPE_RESOLUTION_FAILURE, sub_status: None, message: Some(“Cannot find 0000000000000000000000000000000000000000000000000000000000000002::sui::Sui in cache”), exec_state: None, location: Undefined, indices: , offsets: }) kind=VMInvariantViolation tx_digest=TransactionDigest(EzQ1EHTYXKheA4rzF3GSUUVffaAJeaF7PWFMXoBTvzV)
2023-06-05T17:40:56.829536Z INFO schedule_checkpoint{seq=825000 epoch=7}: sui_core::checkpoints::checkpoint_executor: Checkpoint preparation for execution took 421.161µs
2023-06-05T17:40:56.836070Z INFO sui_core::checkpoints::checkpoint_executor: Checkpoint execution took 6.532278ms seq=825000
2023-06-05T17:40:57.883868Z ERROR execution_driver{tx_digest=TransactionDigest(4tbb5Tj5Q4SPbJbHu3iBNmNgFJnWDvYYPZgKMpn6iFB2)}: sui_adapter_latest::execution_engine: INVARIANT VIOLATION! Source: Some(VMError { major_status: TYPE_RESOLUTION_FAILURE, sub_status: None, message: Some(“Cannot find 0000000000000000000000000000000000000000000000000000000000000002::sui::Sui in cache”), exec_state: None, location: Undefined, indices: , offsets: }) kind=VMInvariantViolation tx_digest=TransactionDigest(4tbb5Tj5Q4SPbJbHu3iBNmNgFJnWDvYYPZgKMpn6iFB2)
2023-06-05T17:41:02.161480Z INFO sui_core::checkpoints::checkpoint_executor: Finished syncing and executing checkpoint 825000
2023-06-05T17:41:09.700895Z WARN request{route=/sui.StateSync/GetCheckpointSummary remote_peer_id=ff168d74 direction=outbound}: anemo_tower::trace::on_failure: response failed error=Error: connection lost latency=7158 ms
2023-06-05T17:41:09.700899Z WARN request{route=/sui.StateSync/GetCheckpointSummary remote_peer_id=ff168d74 direction=outbound}: anemo_tower::trace::on_failure: response failed error=Error: connection lost latency=2158 ms

Please help me to understand what the exact issue is.

I also look into the checkpoint number by running the below curl command:

curl http://127.0.0.1:9000 --request POST $SUI_RPC_HOST --header ‘Content-Type: application/json’ --data-raw ‘{ “jsonrpc”:“2.0”, “method”:“sui_getLatestCheckpointSequenceNumber”,“id”:1,“params”: }’ | jq

{
“jsonrpc”: “2.0”,
“result”: “841707”,
“id”: 1
}
The result value is not increasing since last 6-7 hrs.

Thanks,