This commit is contained in:
Łukasz Magiera 2024-03-17 17:40:56 +01:00
parent 3c2be70d59
commit 154cf09f52
2 changed files with 17 additions and 1 deletions

View File

@ -2,11 +2,11 @@ package piece
import ( import (
"context" "context"
"github.com/filecoin-project/lotus/curiosrc/ffi"
"time" "time"
"golang.org/x/xerrors" "golang.org/x/xerrors"
"github.com/filecoin-project/lotus/curiosrc/ffi"
"github.com/filecoin-project/lotus/lib/harmony/harmonydb" "github.com/filecoin-project/lotus/lib/harmony/harmonydb"
"github.com/filecoin-project/lotus/lib/harmony/harmonytask" "github.com/filecoin-project/lotus/lib/harmony/harmonytask"
"github.com/filecoin-project/lotus/lib/harmony/resources" "github.com/filecoin-project/lotus/lib/harmony/resources"

View File

@ -330,6 +330,22 @@ documentation.`,
Comment: ``, Comment: ``,
}, },
{
Name: "EnableParkPiece",
Type: "bool",
Comment: `EnableParkPiece enables the "piece parking" task to run on this node. This task is responsible for fetching
pieces from the network and storing them in the storage subsystem until sectors are sealed. This task is
only applicable when integrating with boost, and should be enabled on nodes which will hold deal data
from boost until sectors containing the related pieces have the TreeD/TreeR constructed.
Note that future Curio implementations will have a separate task type for fetching pieces from the internet.`,
},
{
Name: "ParkPieceMaxTasks",
Type: "int",
Comment: ``,
},
{ {
Name: "EnableSealSDR", Name: "EnableSealSDR",
Type: "bool", Type: "bool",