lotus-miner: add more help text to storage / attach
This commit is contained in:
parent
46ed0142db
commit
c66f087f4c
@ -31,6 +31,9 @@ const metaFile = "sectorstore.json"
|
|||||||
var storageCmd = &cli.Command{
|
var storageCmd = &cli.Command{
|
||||||
Name: "storage",
|
Name: "storage",
|
||||||
Usage: "manage sector storage",
|
Usage: "manage sector storage",
|
||||||
|
Description: `Sectors can be stored across many filesystem paths. These commands provide ways to
|
||||||
|
manage the storage the miner will used to store sectors long term for proving (refernces as 'store')
|
||||||
|
as well as how sectors will be stored while moving through the sealing pipeline (references as 'seal').`,
|
||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
storageAttachCmd,
|
storageAttachCmd,
|
||||||
storageListCmd,
|
storageListCmd,
|
||||||
@ -41,6 +44,22 @@ var storageCmd = &cli.Command{
|
|||||||
var storageAttachCmd = &cli.Command{
|
var storageAttachCmd = &cli.Command{
|
||||||
Name: "attach",
|
Name: "attach",
|
||||||
Usage: "attach local storage path",
|
Usage: "attach local storage path",
|
||||||
|
Description: `Storage can be attach to the miner using this command. The storage volume list is stored local
|
||||||
|
to the miner in $LOTUS_MINER_PATH/storage.json. We do not recommend modifying this value without further
|
||||||
|
understanding of the storage system.
|
||||||
|
|
||||||
|
Each storage volume contains a configuration file which descripbes the capabilities of the volume. When the
|
||||||
|
'--init' flag is provided, this file will be created using the additional flags.
|
||||||
|
|
||||||
|
Weight
|
||||||
|
A high weight value means data will be more likely to be stored
|
||||||
|
|
||||||
|
Seal
|
||||||
|
Intermittment data for the sealing process will be stored here
|
||||||
|
|
||||||
|
Store
|
||||||
|
Finalized sectors that will be proved over will be stored here
|
||||||
|
`,
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
&cli.BoolFlag{
|
&cli.BoolFlag{
|
||||||
Name: "init",
|
Name: "init",
|
||||||
|
9
extern/sector-storage/stores/local.go
vendored
9
extern/sector-storage/stores/local.go
vendored
@ -30,10 +30,15 @@ type StoragePath struct {
|
|||||||
|
|
||||||
// LocalStorageMeta [path]/sectorstore.json
|
// LocalStorageMeta [path]/sectorstore.json
|
||||||
type LocalStorageMeta struct {
|
type LocalStorageMeta struct {
|
||||||
ID ID
|
ID ID
|
||||||
|
|
||||||
|
// A height wait means data is more likely to be stored here
|
||||||
Weight uint64 // 0 = readonly
|
Weight uint64 // 0 = readonly
|
||||||
|
|
||||||
CanSeal bool
|
// Intermittment data for the sealing process will be stored here
|
||||||
|
CanSeal bool
|
||||||
|
|
||||||
|
// Finalized sectors that will be proved over will be stored here
|
||||||
CanStore bool
|
CanStore bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user