전체 체인을 동기화하는 데 얼마나 걸립니까?
1 대답
- 투표
-
- 2019-03-25
처음부터 전체 체인을 완전히 동기화하려면 SSD의 속도에 따라 24 시간 미만이 소요됩니다. 비 SSD를 사용하는 경우 며칠이 걸릴 수 있으며 권장되지 않습니다.
대부분의 경우 처음부터 모든 컨텍스트 메타 데이터를 다시 생성 할 필요가 없기 때문에 최근에 새로운 기록 모드가 추가되었습니다. 이러한 모드에서 실행하면 처음부터 훨씬 더 빠르게 동기화되며 저렴한 하드웨어 설정에서 실행 가능합니다.
새 모드는 다음과 같이 요약되어 자세한 내용은 https://blog.nomadic-labs.com/introducing-snapshots-and-history-modes-for-the-tezos-node.html
기록 모드 를 사용하면 체인의 전체 아카이브를 유지하지 않고도 노드를 실행할 수 있습니다.
다음은 세 가지 첫 번째 모드입니다.
전체 노드 는 체인 시작 이후의 모든 체인 데이터를 저장하지만 보관 된 컨텍스트를 현재 체크 포인트 아래로 삭제합니다. 즉,체인의 어느 지점에서든 블록이나 작업을 쿼리 할 수 있지만 과거에 너무 먼 잔액이나 스테이 킹 권한을 쿼리 할 수는 없습니다.
롤링 노드 는 현재 가장 가볍기 때문에 체인의 최소 롤링 조각 만 유지하고이 조각 이전의 모든 항목 (블록,작업 및 보관 된 컨텍스트)을 삭제합니다.
아카이브 노드 는 모든 것을 저장합니다. 이것은 Tezos 노드의 현재 동작에 해당합니다.
거의 모든 사람에게 충분하므로 전체 노드가 새로운 기본값이됩니다. 앞으로 새로운 모드를 도입 할 계획입니다.
중요한 점은 전체 노드를 실행하는 것으로 전체 체인 기록을 유지하기에 충분하다는 것입니다. 실제로 아카이브 노드는 아카이브 피어를 사용하여 아카이브를 부트 스트랩 할 필요가 없지만 체인 데이터가 체인을 적용하고 컨텍스트 아카이브를 구성하기에 충분하므로 전체 피어 만 사용할 수 있습니다. 즉,네트워크는 기본값을 전체로 전환하여 보안을 잃지 않습니다.
To fully sync the entire chain from the start should take a little under 24 hours depending on the speed of your SSD. If you are using non-SSD it can take many days and is not recommended.
New history modes have recently been added as it's not necessary to regenerate all of the context metadata from the beginning for most cases. Running in those modes will sync from start much faster and be viable on lower cost hardware setups.
The new modes are summarized as follows for more details can read https://blog.nomadic-labs.com/introducing-snapshots-and-history-modes-for-the-tezos-node.html
History modes allow the node to run without maintaining the full archives of the chain.
Here are the three first modes:
full nodes store all chain data since the beginning of the chain, but drop the archived contexts below the current checkpoint. In other words, you can still query any block or operation at any point in the chain, but you cannot query the balances or staking rights too far in the past.
rolling nodes are currently the most lightweight, only keeping a minimal rolling fragment of the chain and deleting everything before this fragment (blocks, operations and archived contexts).
archive nodes store everything. This corresponds to the current behaviour of Tezos nodes.
Full nodes will be the new default, as they are sufficient for almost everyone. We plan to introduce new modes in the future.
An important thing to note is that running a full node is enough to maintain the full chain history. Indeed, archive nodes do not need to use archive peers to bootstrap their archive, but only full peers, as the chain data is enough to apply the chain and construct the context archives. In other words, the network does not lose any security by switching to full as the default.
-
고마워 !현재 체인은 얼마나 큽니까 (GB)?왜 그렇게 큰가요?비트 코인이 너무 크고 지분 증명 코인이 아니라고 생각 했나요?거대한 기가 바이트의 PoW에서 벗어나는 어떤 이점이 없었습니까? 내가 이해하는 바와 같이tezos는btc와 같은 동일한 문제를 가지고있을 것입니다. 계속 증가하는 스토리지 요구 사항을 해결하는 방법은 무엇입니까?thx ! and how big (GB) is current chain? and why is it even so big? i thought bitcoin is so big and proof of stake coins not? Wasnt there some kind of advantage drifting away from the huge gigabytes of PoW? As I understand tezos will have same issues like btc - how to tackle the ever increasing storage requirements?
- 0
- 2019-03-27
- johnsmiththelird
-
내 대답의 링크를 읽으면 모든 데이터가 보안에 필요한 것은 아니라 저장된 데이터 유형간에 차이가 있음을 알 수 있습니다.비트 코인은 스마트 계약을 지원하지 않습니다. 이러한 계약의 상태와 모든 중간 상태 데이터는 아카이브 노드를 매우 크게 만듭니다.현재 Tezos의 아카이브 노드는 약 90GB입니다.그러나 보안을 유지하기 위해 모든 상태를 유지할 필요는 없으며 전체 노드는 훨씬 더 작고 롤링 노드는 많은 것을 차지하지 않습니다.그리고 롤링 모드의 경우 항상 가지 치기 때문에 실제로 성장하지 않습니다.It's not a problem, if you read the link in my answer you will see that there is a difference between the types of data stored, not all the data is needed for security. Bitcoin doesn't support smart contracts, the state in these contracts as well as all the intermediate state data is what makes archive node so big. Currently around 90GB for an archive node in Tezos. But you don't need to keep all that state to have security, full nodes are much smaller and rolling nodes don't take up much at all. And in the case of rolling mode, it won't really grow as its always being pruned.
- 0
- 2019-03-27
- cousinit
-
더 많은 관련 질문이있는 경우 각각 적절한 답변을받을 수 있도록 개별적으로 질문하십시오.이 사이트는 Q & A를위한 것입니다. 이러한 문제에 대해 더 많은 논의를 원한다면 Tezos 채팅방에 참여해야합니다.if you have more related questions please ask them separately so they can each receive proper answers. This site is for Q&A if you want more discussion on these issues you should join the Tezos chat rooms.
- 0
- 2019-03-27
- cousinit
전체 베이킹 노드를 시작하려는 경우 전체 체인을 동기화하는 데 현재 얼마나 걸리나요 (0에서 시작하는 경우)?