롤링 모드로 Tezos 노드를 실행하지만 처음부터 동기화가 시작되었습니다
-
-
스냅 샷을 찍어 가비지 수집으로 가져와야했습니다.바라건대gc는 미래에 자동으로 발생합니다.I've had to take a snapshot and import it to garbage collect. Hopefully gc will happen automatically in the future.
- 1
- 2019-05-13
- Richard Ayotte
-
2 대답
- 투표
-
- 2020-01-23
스냅 샷을 가져올 때 history-mode 인수를 사용하십시오.단계는 다음과 같습니다.
rm -rf .tezos-node/{context,store,version.json} tezos-node snapshot import "${SNAPSHOT_FILENAME}" --history-mode=experimental-rolling tezos-node config init tezos-node run --history-mode=experimental-rolling --rpc-addr=127.0.0.1:8732 --connections=20 --bootstrap-threshold=3
Use the history-mode argument when importing the snapshot. These are the steps:
rm -rf .tezos-node/{context,store,version.json} tezos-node snapshot import "${SNAPSHOT_FILENAME}" --history-mode=experimental-rolling tezos-node config init tezos-node run --history-mode=experimental-rolling --rpc-addr=127.0.0.1:8732 --connections=20 --bootstrap-threshold=3
-
여기에 설명 된대로 노드를 실행하고 있습니다. https ://medium.com/@ Jamyye/install-tezos-node-on-ubuntu-18-04-rolling-history-mode-e26598daa3d2 또는 https://gist.github.com/hclivess/cfbc8eddb1f5692c619036cb47072934 롤링 모드이지만 동기화가 처음에 시작되었으며 이미 50GB를 사용하고 있습니다.타임 스탬프를 확인했습니다. $ ./tezos-clientget timestamp 2018–12–05T16 : 55 : 20Z 내가 뭘 잘못하고 있니?