Hello, everyone, I used the node deployed by docker images stellar/quickstart and executed the
docker stop stellar
docker rm -f stellar
docker rmi stellar/quickstart
docker pull stellar/quickstart
docker run -d -v "/data/xlm_data/stellar:/opt/stellar" -p "8000:8000" -p "5432:5432" -p "11626:11626" -p "11625:11625" --name stellar stellar/quickstart --pubnet
Upgraded, and then when I access port 11626, the return is as follows
"state": "Catching up",
"status": [
"Catching up to ledger 35711231: Download & apply checkpoints: num checkpoints left to apply:121 (11% done)"
]
The catch-up speed is particularly slow, follow-up visits to port 8000
"horizon_version": "2.3.0-5029e28d1ec6272a44f5c03ad732059b2fead31d",
"core_version": "stellar-core 17.1.0 (fbc0325759ff75dd250cb5e175978669cdb4e90a)",
"ingest_latest_ledger": 35687507,
"history_latest_ledger": 35696255,
"history_latest_ledger_closed_at": "2021-06-02T04:14:42Z",
"history_elder_ledger": 35637508,
"core_latest_ledger": 35703501,
"network_passphrase": "Public Global Stellar Network ; September 2015",
"current_protocol_version": 17,
"core_supported_protocol_version": 17
stellar-core-stdout.log:
2021-06-03T04:27:15.752 GCOTQ [Ledger INFO] Got consensus: [seq=35712240, prev=2cc76d, txs=137, ops=254, sv: [ SIGNED@wirexSG txH: 242230, ct: 1622694427, upgrades: [ ] ]]
2021-06-03T04:27:15.752 GCOTQ [Ledger INFO] Close of ledger 35712240 buffered
2021-06-03T04:27:15.911 GCOTQ [Herder INFO] Quorum information for 35712239 : {"agree":23,"cost":8150828,"delayed":0,"disagree":0,"fail_at":6,"hash":"341a0a","lag_ms":160,"ledger":35712239,"missing":0,"phase":"EXTERNALIZE"}
horizon-stdout.log:
time="2021-06-03T04:28:40.815Z" level=info msg="Waiting for ledger to be available in the backend..." ledger=35702958 pid=20 service=ingest
time="2021-06-03T04:28:40.933Z" level=info msg="Ledger returned from the backend" duration=0.117706126 ledger=35702958 pid=20 service=ingest
time="2021-06-03T04:28:40.933Z" level=info msg="Processing ledger" commit=false ledger=true pid=20 sequence=35702958 service=ingest state=false
time="2021-06-03T04:28:41.199Z" level=info msg="waiting for ingestion system catchup" pid=20 service=ingest status="{false false 35687507 35687407}"
time="2021-06-03T04:28:41.262Z" level=info msg="Processed ledger" commit=false duration=0.328769751 ledger=true pid=20 sequence="{0 0xc000033b00}" service=ingest state=false stats_operations=477 stats_operations_account_merge=0 stats_operations_allow_trust=16 stats_operations_begin_sponsoring_future_reserves=2 stats_operations_bump_sequence=1 stats_operations_change_trust=5 stats_operations_claim_claimable_balance=0 stats_operations_clawback=0 stats_operations_clawback_claimable_balance=0 stats_operations_create_account=0 stats_operations_create_claimable_balance=0 stats_operations_create_passive_sell_offer=0 stats_operations_end_sponsoring_future_reserves=2 stats_operations_in_failed=7 stats_operations_in_successful=470 stats_operations_inflation=0 stats_operations_manage_buy_offer=189 stats_operations_manage_data=2 stats_operations_manage_sell_offer=242 stats_operations_path_payment_strict_receive=4 stats_operations_path_payment_strict_send=1 stats_operations_payment=13 stats_operations_revoke_sponsorship=0 stats_operations_set_options=0 stats_transactions=166 stats_transactions_failed=7 stats_transactions_successful=159
I want to synchronize quickly, what should I do? Thanks