Skip to content

Commit a62dba1

Browse files
authored
Added pool upgrade how-to document (#280)
Added pool upgrade how-to document
1 parent 7c9107e commit a62dba1

File tree

4 files changed

+188
-18
lines changed

4 files changed

+188
-18
lines changed

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ In order to send write transactions to the ledger you need:
4949
- **Private Sentry Node:** connected to other Validators or Sentry nodes only; should not be accessed by clients.
5050
- **Public Sentry Node:** clients and other nodes can access it; basically the same as an Observer node.
5151
- **Observer Node (ON):** a full node that doesn't participate in consensus. Should be used to receive read/write requests from the clients. Technically can be a Public Sentry node.
52-
- **Light Client Proxy Node**: doesn't contain a full replication of data. Can be used as a proxy to untrusted Full nodes for single-value query requests sent via CLI or Tendermint RPC. It will verify all state proofs automatically.
52+
- **Light Client Proxy Node**: doesn't contain a full replication of data. Can be used as a proxy to untrusted Full nodes for single-value query requests sent via CLI or Tendermint RPC.
53+
It will verify all state proofs automatically.
5354
- **Seed Node**: provides a list of peers which a node can connect to.
5455

5556
See
@@ -193,6 +194,10 @@ you will need to create a genesis node and a genesis file first as described in
193194
Please note, that these instructions describe the case when the genesis block consists of a single node only.
194195
This is done just for simplicity, and nothing prevents you from adding more nodes to the genesis file by adapting the instructions accordingly.
195196

197+
### Upgrade all nodes in a pool to a new version of DCL application
198+
DCL application can be simultaneously updated on all nodes in the pool without breaking consensus.
199+
See [Pool Upgrade](docs/pool-upgrade.md) and [Pool Upgrade How To](docs/pool-upgrade-how-to.md) for details.
200+
196201
## Useful Links
197202
- [OpenAPI specification](https://zigbee-alliance.github.io/distributed-compliance-ledger/)
198203
- [Quick Start](docs/quickStartGuide.adoc)
@@ -204,6 +209,7 @@ This is done just for simplicity, and nothing prevents you from adding more node
204209
- [Device off-ledger certification](docs/use_cases/use_cases_device_off_ledger_certification.png)
205210
- [Auth](docs/use_cases/use_cases_txn_auth.png)
206211
- [Validators](docs/use_cases/use_cases_add_validator_node.png)
212+
- [Pool Upgrade](docs/use_cases/use_cases_upgrade_pool.png)
207213
- [DC Ledger Overview](docs/design/DCL-Overview.pdf)
208214
- [DC Ledger Architecture Details](docs/design/DCL-arch-overview.pdf)
209215
- [Deployment Pattern](docs/deployment.png)
@@ -213,9 +219,7 @@ This is done just for simplicity, and nothing prevents you from adding more node
213219
- [Running a Genesis Validator Node](docs/advanced/running-genesis-node.md)
214220
- [Running a Validator Node](docs/advanced/running-validator-node.md)
215221
- [Running an Observer Node](docs/advanced/running-observer-node.md)
222+
- [Pool Upgrade](docs/pool-upgrade.md)
223+
- [Pool Upgrade How To Guide](docs/pool-upgrade-how-to.md)
216224
- [Tendermint](https://tendermint.com/)
217225
- [Cosmos SDK](https://cosmos.network/sdk)
218-
219-
220-
221-

docs/pool-upgrade-how-to.md

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
# Pool Upgrade How To
2+
3+
Below there are steps which need to be done to upgrade a pool to a new DCL
4+
application version:
5+
6+
1. **[Dev Team] New Release and Upgrade Name**: A new release of
7+
[distributed-compliance-ledger](https://github.com/zigbee-alliance/distributed-compliance-ledger)
8+
project is issued. The code of the new released application version must be
9+
augmented by a new upgrade handler which will handle an upgrade to this new
10+
version. This upgrade handler must have a unique name which will serve as the
11+
name of the upgrade to this new version.
12+
13+
2. **[Trustees] Upgrade Height**: A ledger height not reached yet at which all
14+
the nodes in the pool must be upgraded to the new application version is
15+
chosen.
16+
17+
3. **[A Trustee] ProposeUpgrade**: One of trustees proposes the upgrade using
18+
the following steps:
19+
20+
1. Calculates SHA-256 or SHA-512 checksums of the new application version
21+
binaries (for the supported platforms) taken from the project release.
22+
This can be done using `sha256sum` or `sha512sum` tool. For example:
23+
```
24+
sha256sum ./dcld
25+
```
26+
27+
2. Sends [`ProposeUpgrade`](./transactions.md#propose_upgrade) transaction
28+
with the name of the new upgrade handler, the chosen ledger height and the
29+
info containing URLs of the new application version binaries for supported
30+
platforms with the calculated checksums. For example:
31+
```
32+
dcld tx dclupgrade propose-upgrade --name=v0.7.0 --upgrade-height=10000 --upgrade-info="{\"binaries\":{\"linux/amd64\":\"https://github.com/zigbee-alliance/distributed-compliance-ledger/releases/download/v0.7.0/dcld?checksum=sha256:50708d4f7e00da347d4e678bf26780cd424232461c4bb414f72391c75e39545a\"}}" --from=alice
33+
```
34+
35+
4. **[Trustees] ApproveUpgrade**: Other trustees approve the proposed upgrade
36+
until it turns into the approved state and is scheduled (this happens when
37+
the count of approvals including the proposal reaches 2/3 of the total count
38+
of trustees). Each of them uses the following steps to accomplish this:
39+
40+
1. Re-calculates checksums of the new application version binaries (for the
41+
supported platforms) taken from the project release. This can be done
42+
using `sha256sum` / `sha512sum` tool. For example:
43+
```
44+
sha256sum ./dcld
45+
```
46+
47+
2. Ensures that the re-calculated values are equal to the checksums specified
48+
in the proposed upgrade plan `Info` field. Example how to view the
49+
proposed upgrade plan:
50+
```
51+
dcld query dclupgrade proposed-upgrade --name=v0.7.0
52+
```
53+
54+
3. Verifies that the application binaries URLs provided in the proposed
55+
upgrade plan `Info` field are valid and that the files referenced by them
56+
match the provided checksums.
57+
58+
4. Verifies that `Height` field of the proposed upgrade plan has the proper
59+
value.
60+
61+
5. Sends [`ApproveUpgrade`](./transactions.md#approve_upgrade) transaction
62+
with the name of the proposed upgrade. For example:
63+
```
64+
dcld tx dclupgrade approve-upgrade --name=v0.7.0 --from=bob
65+
```
66+
67+
5. **[Anyone] Ensure That Upgrade Has Been Scheduled**: It makes sense to ensure
68+
that the upgrade has been approved and scheduled. Example how to view the
69+
approved upgrade plan:
70+
```
71+
dcld query dclupgrade approved-upgrade --name=v0.7.0
72+
```
73+
Command to view the current scheduled upgrade plan:
74+
```
75+
dcld query upgrade plan
76+
```
77+
78+
6. **[All Node Admins] Download New Binary**: Before the ledger reaches the
79+
height specified in the upgrade plan, each node admin does the following
80+
steps:
81+
82+
1. Downloads the application binary from the URL specified in the upgrade
83+
plan `Info` field and corresponding to the node platform. Command to view
84+
the current scheduled upgrade plan:
85+
```
86+
dcld query upgrade plan
87+
```
88+
89+
2. Verifies that the downloaded application binary matches the checksum
90+
specified in the URL. This can be done automatically together with the
91+
previous step by [`go-getter`](https://github.com/hashicorp/go-getter)
92+
download tool (its executable binaries for various platforms can be
93+
downloaded from https://github.com/hashicorp/go-getter/releases). For
94+
example:
95+
```
96+
go-getter https://github.com/zigbee-alliance/distributed-compliance-ledger/releases/download/v0.7.0/dcld?checksum=sha256:50708d4f7e00da347d4e678bf26780cd424232461c4bb414f72391c75e39545a ~/Downloads
97+
```
98+
`go-getter` verifies that the downloaded file matches the checksum when
99+
the URL is provided in the specified format. If the downloaded file
100+
checksum does not equal to the checksum provided in the URL, `go-getter`
101+
reports that checksums did not match.
102+
103+
3. Creates a directory with the name of the upgrade within
104+
`/var/lib/<USERNAME>/.dcl/cosmovisor/` (where <USERNAME> is the name of
105+
the user on behalf of whom `cosmovisor` service is running), creates
106+
`bin` sub-directory within the created directory, and puts the new
107+
application binary within `bin` sub-directory.
108+
109+
Example (for the user `ubuntu`):
110+
```
111+
cd /var/lib/ubuntu/.dcl/cosmovisor
112+
mkdir -p upgrades
113+
cd upgrades
114+
mkdir v0.7.0
115+
cd v0.7.0
116+
mkdir bin
117+
cd ~/Downloads
118+
cp ./dcld /var/lib/ubuntu/.dcl/cosmovisor/upgrades/v0.7.0/bin/
119+
```
120+
Ensure that `dcld` file has been copied to the new application version
121+
binary directory:
122+
```
123+
ls -l /var/lib/ubuntu/.dcl/cosmovisor/upgrades/v0.7.0/bin/dcld
124+
```
125+
The command output must contatain information about `dcld` file like
126+
following:
127+
```
128+
-rw-r--r-- 1 ubuntu ubuntu 55816720 Mar 11 08:23 /var/lib/ubuntu/.dcl/cosmovisor/upgrades/v0.7.0/bin/dcld
129+
```
130+
131+
7. **Upgrade Is Applied**: The upgrade is applied on all the nodes in the pool
132+
when the ledger reaches the height specified in the upgrade plan.
133+
134+
Command to view the current pool status:
135+
```
136+
dcld status
137+
```
138+
The current ledger height is reported in `SyncInfo` -> `latest_block_height`
139+
field.
140+
141+
Example of command to check whether the upgrade was applied:
142+
```
143+
dcld query upgrade applied v0.7.0
144+
```
145+
If the upgrade with the passed name was applied, this command output will
146+
contain information about it.

docs/pool-upgrade.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Any upgrade plan has the following fields:
1818
proposed, it is impossible to propose an upgrade with the same name any time
1919
in the future).
2020
* `Height: int64` - the height of the ledger at which the upgrade must be
21-
performed on all the nodes in the pool.
21+
applied on all the nodes in the pool.
2222
* `Info: optional(string)` - a string containing any additional information
2323
about the upgrade, e.g. URLs for downloading the new application version
2424
binaries for supported platforms (see below).
@@ -36,9 +36,10 @@ and is actually scheduled.
3636
There can be multiple proposed upgrade plans at the same time but not more than
3737
one scheduled upgrade plan at a time. If there is currently a scheduled upgrade
3838
plan and another upgrade plan turns into the approved state, then the latter is
39-
scheduled and the former is actually discarded. When the upgrade procedure is
40-
completed, the current scheduled upgrade plan is cleared. However, the approved
41-
upgrade plan entity remains in the store forever for information purposes.
39+
scheduled and the former is actually cancelled. When the upgrade procedure is
40+
completed, the current scheduled upgrade plan is cleared. Please note, once an
41+
upgrade is approved, the approved upgrade entity remains in the store forever
42+
(no matter if the upgrade is later completed or cancelled).
4243

4344
For the upgrade procedure to be feasible in an automated mode, the application
4445
process `dcld` is controlled as a sub-process by the parent process
@@ -52,10 +53,10 @@ documentation](https://github.com/cosmos/cosmos-sdk/tree/cosmovisor/v1.0.0/cosmo
5253
for details.
5354

5455
When the ledger reaches the height specified in the current scheduled upgrade
55-
plan, `dcld` notifies `cosmovisor` that the upgrade must be performed and stops.
56+
plan, `dcld` notifies `cosmovisor` that the upgrade must be applied and stops.
5657
`cosmovisor`, having been notified, performs data back-up, switches `current`
5758
symbolic link to the new application version directory and launches the new
58-
`dcld` binary which performes necessary store migrations and clears the current
59+
`dcld` binary which performs necessary store migrations and clears the current
5960
scheduled upgrade plan on start.
6061

6162
## Application Binary Download
@@ -73,7 +74,9 @@ note that the URLs should include checksums. This allows to verify that no false
7374
binary is run. It is recommended to use
7475
[`go-getter`](https://github.com/hashicorp/go-getter) tool for downloading the
7576
application binaries because it verifies that the downloaded file matches the
76-
checksum when the URL is provided in the specified format. To view `Info` field
77-
value of an upgrade plan, just execute an appropriate query command from
78-
`dclupgrade` or `upgrade` module. See [Upgrade CLI commands
79-
reference](./transactions.md#upgrade) for details.
77+
checksum when the URL is provided in the specified format. If the downloaded
78+
file checksum does not equal to the checksum provided in the URL, `go-getter`
79+
reports that checksums did not match. To view `Info` field value of an upgrade
80+
plan, just execute an appropriate query command from `dclupgrade` or `upgrade`
81+
module. See [Upgrade CLI commands reference](./transactions.md#upgrade) for
82+
details.

docs/transactions.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,19 @@ Proposes an upgrade plan with the given name at the given height.
12401240
- Parameters:
12411241
- name: `string` - upgrade plan name
12421242
- upgrade-height: `int64` - upgrade plan height (positive non-zero)
1243-
- upgrade-info: `optional(string)` - upgrade plan info
1243+
- upgrade-info: `optional(string)` - upgrade plan info (for node admins to
1244+
read). Recommended format is an os/architecture -> application binary URL
1245+
map as a JSON under `binaries` key where each URL should include the
1246+
corresponding checksum as `checksum` query parameter with the value in the
1247+
format `type:value` where `type` is `sha256` or `sha512` and `value` is
1248+
the actual checksum value. For example:
1249+
```json
1250+
{
1251+
"binaries": {
1252+
"linux/amd64":"https://github.com/zigbee-alliance/distributed-compliance-ledger/releases/download/v0.7.0/dcld?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f"
1253+
}
1254+
}
1255+
```
12441256
- In State: `dclupgrade/ProposedUpgrade/value/<name>`
12451257
- Who can send:
12461258
- Trustee
@@ -1343,7 +1355,10 @@ dcld query upgrade plan
13431355
#### APPLIED
13441356
**Status: Implemented**
13451357

1346-
Returns the header for the block at which the upgrade with the given name was applied, if it was previously executed on the chain. This helps a client determine which binary was valid over a given range of blocks, as well as gives more context to understand past migrations.
1358+
Returns the header for the block at which the upgrade with the given name was
1359+
applied, if it was previously executed on the chain. This helps a client
1360+
determine which binary was valid over a given range of blocks, as well as gives
1361+
more context to understand past migrations.
13471362

13481363
- Parameters:
13491364
- `string` - upgrade name
@@ -1357,7 +1372,9 @@ dcld query upgrade applied <string>
13571372
#### MODULE_VERSIONS
13581373
**Status: Implemented**
13591374

1360-
Gets a list of module names and their respective consensus versions. Following the command with a specific module name will return only that module's information.
1375+
Gets a list of module names and their respective consensus versions. Following
1376+
the command with a specific module name will return only that module's
1377+
information.
13611378

13621379
- Parameters:
13631380
- `optional(string)` - module name

0 commit comments

Comments
 (0)