제빵사, 보증인 및 고소인이 동일한 노드 옆에서 실행해야합니까?
-
-
자세한 내용은 베이킹 슬랙 (https://tezos-baking.slack.com/archives/CC4FD2HUY/p1550653675317700)에서 확인할 수 있습니다.Additional details is available on the baking slack at https://tezos-baking.slack.com/archives/CC4FD2HUY/p1550653675317700
- 0
- 2019-02-22
- Ezy
-
1 대답
- 투표
-
- 2019-02-20
보증 자와 고소자는 노드와 동일한 시스템에서 실행할 필요가 없습니다. 완전히 분리 된 시스템 또는 동일한 시스템 (사용자 선택)에서 실행할 수 있으며 RPC (기본적으로 포트 8732)를 통해 Tezos 노드와의 통신 만 필요합니다.
그러나 제빵사는 노드가 생성하는 데이터 파일에 대한 로컬 액세스가 필요합니다. Tezos 블록 체인 데이터는 LMDB 데이터베이스에 저장되며 제빵사는 작동하는 동안 이러한 파일에 액세스해야하므로 제빵사는 Tezos 노드와 동일한 시스템에서 실행되어야하며 다음과 유사한 명령을 실행하여 제빵사를 시작합니다.
tezos-baker-003-PsddFKi3 run with local node ~/.tezos-node
로 실행됩니다. 이것은 Tezos 노드가 사용하는 동일한 LMDB 데이터베이스에서 제빵사를 가리 킵니다.베이커가 로컬 노드를 요구하도록하는 것은 이상적이지 않지만,좋은 소식은 별도의 시스템에서 보증서를 실행하거나 별도의 노드를 가리켜 베이커의 다운 타임을 줄일 수 있다는 것입니다 (소프트웨어 실행 중에 보증 누락없이 업그레이드 또는 OS 패치).
The endorser and accuser don't need to run on the same system as a node. They can run on a completely separate system, or on the same system (your choice), and only require communication with the Tezos node over RPC (to port 8732 by default).
The baker, however, does require local access to the data files that the node creates. The Tezos blockchain data is stored in an LMDB database, and the baker requires access to these files while it is operating, so the baker should be running on the same system as the Tezos node, and you start the baker by running a command similar to
tezos-baker-003-PsddFKi3 run with local node ~/.tezos-node
. This points the baker at the same LMDB database that the Tezos node is using.While having the baker require a local node is not ideal, the good news is that you can run your endorser on a separate system, or pointing at a separate node, which should allow you to take downtime on your baker (during software upgrades or OS patches) without missing endorsements.
-
베이커 프로세스는 베이킹하는 동안 여전히 RPC를 통해 (로컬) 테 조스 노드와 통신합니까?데이터 파일에 대한 로컬 액세스가 읽기 전용입니까? 예를 들어 분산 파일 시스템에있을 수 있습니까?Does the baker process still communicate over RPC with the (local) tezos node while baking? Is the local access to the data file read only, so it could be on a distributed file system for example?
- 0
- 2019-08-06
- Phlogi
모두 동일한 원격 서명자를 사용하는 4 개의 노드가 실행 중입니다.이 유형의 설정에서 제빵사,보증인 및 고소인이 어느 노드에서나 실행할 수 있습니까?아니면 같은 노드에서 함께 그룹화해야하도록 일부 로컬 상태를 조작합니까?