Maintenance
How to safely perform maintenance on a Lotus miner.
These operations are normally related to maintenances and upgrades. Given that miners are expected to submit proofs to the chain in a continuous fashion while running long and expensive operations, it is important that operators become familiar with how to manage some of the events in the miner lifecycle so that they can be performed with the maximum guarantees.
Safely restarting the miner daemon
The process of shutting down a miner and starting it again is complicated. Several factors need to be taken into account to be able to do it with all the guarantees:
- How long the miner plans to be offline.
- The existence and distribution of proving deadlines for the miner.
- The presence of open payment channels and ongoing retrieval deals.
- The occurrence of ongoing sealing operations.
Reducing the time offline
Given the need to continuously send proofs to the network, the miner should be offline as little as possible. Offline-time includes the time it takes for the computer to restart the miner daemon fully. For these reasons, we recommend you follow these steps:
- Rebuild, install any upgrades before restarting the Lotus Miner process.
- Ensure the proof parameters are on a fast storage drive like an NVMe drive or SSD. These are the proof parameters that are downloaded the first time the miner is started, and are saved to
var/tmp/filecoin-proof-parameters
, or$FIL_PROOFS_PARAMETER_CACHE
if the environment variable is defined.
Ensuring proofs for the current deadline have been sent
Shutting down your miner while there are still pending operations could get your miner slashed. Check that there are no pending operations by running lotus-miner proving info
. If any deadline shows a block height in the past, do not restart yet.
In the following example, Deadline Open
is 454, which is earlier than Current Epoch
of 500. This miner should not be shut down or restarted:
$ lotus-miner proving info
Miner: t01001
Current Epoch: 500
Proving Period Boundary: 154
Proving Period Start: 154 (2h53m0s ago)
Next Period Start: 3034 (in 21h7m0s)
Faults: 768 (100.00%)
Recovering: 768
Deadline Index: 5
Deadline Sectors: 0
Deadline Open: 454 (23m0s ago)
Deadline Close: 514 (in 7m0s)
Deadline Challenge: 434 (33m0s ago)
Deadline FaultCutoff: 384 (58m0s ago)
In this next example, the miner can be safely restarted because no Deadlines
are earlier than Current Epoch
. You have about 45 minutes before the miner must be back online to declare faults. This is known as the Deadline FaultCutoff
. If the miner has no faults, you have about an hour.
$ lotus-miner proving info
Miner: t01000
Current Epoch: 497
Proving Period Boundary: 658
Proving Period Start: 658 (in 1h20m30s)
Next Period Start: 3538 (in 25h20m30s)
Faults: 0 (0.00%)
Recovering: 0
Deadline Index: 0
Deadline Sectors: 768
Deadline Open: 658 (in 1h20m30s)
Deadline Close: 718 (in 1h50m30s)
Deadline Challenge: 638 (in 1h10m30s)
Deadline FaultCutoff: 588 (in 45m30s)
The proving info
examples above show information for the current proving window and deadlines. If you wish to see any upcoming deadlines you can use:
$ lotus-miner proving deadlines
Every row corresponds to a deadline (a period of 30 minutes covering 24 hours). The current one is marked. This is sometimes useful to find a time of day in which the miner does not have to submit any proofs to the chain.
Checking and temporally disabling deals
Before stopping the miner, check the state of your deals to make sure the miner is not receiving data or retrieving data for a client:
lotus-miner storage-deals list
lotus-miner retrieval-deals list
lotus-miner data-transfers list
To prevent new deals from coming in while you wait to finish work for the current deadline, you can disable storage and retrieval deals. This ensures that the miner does not find itself in the middle of a new deal when shutting down:
lotus-miner storage-deals selection reject --online --offline
lotus-miner retrieval-deals selection reject --online --offline
After the miner has finished rebooting, the deals can be reset with:
lotus-miner storage-deals selection reset
lotus-miner retrieval-deals selection reset
Checking ongoing seal operations
To get an overview of your current sectors and states, run:
lotus-miner sectors list
Any ongoing sealing operation will be restarted from the last checkpoint, and usually corresponds to the start of the current sealing phase. Given that sealing is time consuming, you should wait for some stages that are close to finishing before restarting your miner.
Restarting the miner
With all the considerations above you can decide on the best moment to shutdown your miner:
lotus-miner stop
# When using systemd
# systemctl stop lotus-miner
You can restart the miner as soon as you wish. Workers do not need to be restarted as they will reconnect to the miner automatically when it comes back up. However, if you are upgrading your node at the same time as shutting down your miner, you will need to restart the machine.
Restarting workers
Lotus seal workers can be restarted any time, but if they are in the middle of one of the sealing steps, then the operation will start again (from the last checkpoint).
Changing storage locations
If you wish to change the location of your miner-related storage to a different path, for the miner or the seal workers, make sure that the Lotus miner and any seal workers are aware of the new location.
lotus-miner storage list
The above command will give you an overview of storage locations known to the miner. This information is stored in ~/.lotusminer/storage.json
(or $LOTUS_MINER_PATH/storage.json
if defined). Lotus seal workers store all the data in the ~/.lotusworker
folder (or $LOTUS_WORKER_PATH
if defined).
If you wish to change any of the storage locations of the Lotus miner, follow these steps:
- Set your miner to reject any new storage and retrieval deals so the storage is not modified during the copy.
- Copy the data as is, keeping it in the original location, while the miner is running. Since this usually involves moving large amounts of storage, it will take time. In the meatime our miner will keep tending to its tasks.
- Once the data is copied, stop the miner, following the recommendations above.
- Edit
storage.json
with the new location for the data and make the old data unavailable for the miner (by renaming, or unmounting) to make sure it is not going to be used anymore when you start it. - Start the miner.
- Verify that things are working correctly. If so, you can discard the old copy.
If you wish to expand your storage, while keeping the current, you can always add additional storage locations to a Lotus miner with lotus storage attach
(see --help
).
If you wish to change the storage location for any of the lotus workers:
- Stop the Lotus Worker.
- Move the data to the new location.
- Set
$LOTUS_WORKER_PATH
accordingly. - Start the worker again.
Any operations that the worker was performing before stopping will be restarted from the last checkpoint (a point in which they can be restarted, which may correspond to the start of the current sealing phase).
Using a different Lotus Node
If you are planning to run maintenance on the Lotus node used by the miner, or if you need to failover to a different Lotus node because the current one does not work, follow these steps:
- Stop the miner
- Set the
FULLNODE_API_INFO
environment variable to the location of the new node:
export FULLNODE_API_INFO=<api_token>:/ip4/<lotus_daemon_ip>/tcp/<lotus_daemon_port>/http
Follow these steps to learn how to obtain a token.
- If you have not exported your wallets yet, export them now from the old node and re-import them to the new Lotus node.
- Start the miner. It should now communicate with the new Lotus Node and, since it has the same wallets as the older one, it should be able to perform the necessary operations on behalf of the miner.