ローリングモードで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-クライアントはタイムスタンプを取得します 2018–12–05T16:55:20Z 何が間違っているのですか?