make gen
This commit is contained in:
parent
e060cd2f37
commit
0800e6e5a7
@ -9711,6 +9711,7 @@
|
|||||||
0,
|
0,
|
||||||
1,
|
1,
|
||||||
0,
|
0,
|
||||||
|
0,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"Read": [
|
"Read": [
|
||||||
@ -9718,6 +9719,7 @@
|
|||||||
3,
|
3,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
0,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -9736,8 +9738,8 @@
|
|||||||
"title": "number",
|
"title": "number",
|
||||||
"type": "number"
|
"type": "number"
|
||||||
},
|
},
|
||||||
"maxItems": 5,
|
"maxItems": 6,
|
||||||
"minItems": 5,
|
"minItems": 6,
|
||||||
"type": "array"
|
"type": "array"
|
||||||
},
|
},
|
||||||
"Sector": {
|
"Sector": {
|
||||||
@ -9760,8 +9762,8 @@
|
|||||||
"title": "number",
|
"title": "number",
|
||||||
"type": "number"
|
"type": "number"
|
||||||
},
|
},
|
||||||
"maxItems": 5,
|
"maxItems": 6,
|
||||||
"minItems": 5,
|
"minItems": 6,
|
||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -3,9 +3,6 @@ package tasks
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"github.com/filecoin-project/lotus/lib/lazy"
|
|
||||||
"github.com/filecoin-project/lotus/lib/must"
|
|
||||||
"github.com/filecoin-project/lotus/provider/lppiece"
|
|
||||||
|
|
||||||
logging "github.com/ipfs/go-log/v2"
|
logging "github.com/ipfs/go-log/v2"
|
||||||
"github.com/samber/lo"
|
"github.com/samber/lo"
|
||||||
@ -13,11 +10,14 @@ import (
|
|||||||
|
|
||||||
"github.com/filecoin-project/lotus/cmd/lotus-provider/deps"
|
"github.com/filecoin-project/lotus/cmd/lotus-provider/deps"
|
||||||
"github.com/filecoin-project/lotus/lib/harmony/harmonytask"
|
"github.com/filecoin-project/lotus/lib/harmony/harmonytask"
|
||||||
|
"github.com/filecoin-project/lotus/lib/lazy"
|
||||||
|
"github.com/filecoin-project/lotus/lib/must"
|
||||||
"github.com/filecoin-project/lotus/node/modules"
|
"github.com/filecoin-project/lotus/node/modules"
|
||||||
"github.com/filecoin-project/lotus/provider"
|
"github.com/filecoin-project/lotus/provider"
|
||||||
"github.com/filecoin-project/lotus/provider/chainsched"
|
"github.com/filecoin-project/lotus/provider/chainsched"
|
||||||
"github.com/filecoin-project/lotus/provider/lpffi"
|
"github.com/filecoin-project/lotus/provider/lpffi"
|
||||||
"github.com/filecoin-project/lotus/provider/lpmessage"
|
"github.com/filecoin-project/lotus/provider/lpmessage"
|
||||||
|
"github.com/filecoin-project/lotus/provider/lppiece"
|
||||||
"github.com/filecoin-project/lotus/provider/lpseal"
|
"github.com/filecoin-project/lotus/provider/lpseal"
|
||||||
"github.com/filecoin-project/lotus/provider/lpwinning"
|
"github.com/filecoin-project/lotus/provider/lpwinning"
|
||||||
)
|
)
|
||||||
|
@ -3954,6 +3954,7 @@ Response:
|
|||||||
0,
|
0,
|
||||||
1,
|
1,
|
||||||
0,
|
0,
|
||||||
|
0,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"Read": [
|
"Read": [
|
||||||
@ -3961,6 +3962,7 @@ Response:
|
|||||||
3,
|
3,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
0,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,18 @@
|
|||||||
# type: int
|
# type: int
|
||||||
#WinningPostMaxTasks = 0
|
#WinningPostMaxTasks = 0
|
||||||
|
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# type: bool
|
||||||
|
#EnableParkPiece = false
|
||||||
|
|
||||||
|
# type: int
|
||||||
|
#ParkPieceMaxTasks = 0
|
||||||
|
|
||||||
# EnableSealSDR enables SDR tasks to run. SDR is the long sequential computation
|
# EnableSealSDR enables SDR tasks to run. SDR is the long sequential computation
|
||||||
# creating 11 layer files in sector cache directory.
|
# creating 11 layer files in sector cache directory.
|
||||||
#
|
#
|
||||||
|
@ -1,17 +1,23 @@
|
|||||||
create table parked_pieces (
|
create table parked_pieces (
|
||||||
id serial primary key,
|
id bigserial primary key,
|
||||||
created_at timestamp default current_timestamp,
|
created_at timestamp default current_timestamp,
|
||||||
|
|
||||||
piece_cid text not null,
|
piece_cid text not null,
|
||||||
piece_padded_size bigint not null,
|
piece_padded_size bigint not null,
|
||||||
piece_raw_size text not null,
|
piece_raw_size text not null,
|
||||||
|
|
||||||
complete boolean not null default false
|
complete boolean not null default false
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This table is used to keep track of the references to the parked pieces
|
||||||
|
* so that we can delete them when they are no longer needed.
|
||||||
|
*
|
||||||
|
* All references into the parked_pieces table should be done through this table.
|
||||||
|
*/
|
||||||
create table parked_piece_refs (
|
create table parked_piece_refs (
|
||||||
ref_id serial primary key,
|
ref_id bigserial primary key,
|
||||||
piece_id int not null,
|
piece_id bigint not null,
|
||||||
|
|
||||||
foreign key (piece_id) references parked_pieces(id) on delete cascade
|
foreign key (piece_id) references parked_pieces(id) on delete cascade
|
||||||
);
|
);
|
||||||
@ -21,7 +27,7 @@ create table park_piece_tasks (
|
|||||||
constraint park_piece_tasks_pk
|
constraint park_piece_tasks_pk
|
||||||
primary key,
|
primary key,
|
||||||
|
|
||||||
piece_ref_id int not null,
|
piece_ref_id bigint not null,
|
||||||
|
|
||||||
data_url text not null,
|
data_url text not null,
|
||||||
data_headers jsonb not null default '{}',
|
data_headers jsonb not null default '{}',
|
||||||
|
@ -1033,6 +1033,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",
|
||||||
|
@ -2,11 +2,13 @@ package lpffi
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
|
||||||
"golang.org/x/xerrors"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"golang.org/x/xerrors"
|
||||||
|
|
||||||
|
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (sb *SealCalls) WritePiece(ctx context.Context, pieceID storiface.PieceNumber, size int64, data io.Reader) error {
|
func (sb *SealCalls) WritePiece(ctx context.Context, pieceID storiface.PieceNumber, size int64, data io.Reader) error {
|
||||||
|
@ -3,7 +3,15 @@ package lppiece
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"net/http"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/ipfs/go-cid"
|
||||||
|
logging "github.com/ipfs/go-log/v2"
|
||||||
|
"golang.org/x/xerrors"
|
||||||
|
|
||||||
"github.com/filecoin-project/go-state-types/abi"
|
"github.com/filecoin-project/go-state-types/abi"
|
||||||
|
|
||||||
"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"
|
||||||
@ -11,11 +19,6 @@ import (
|
|||||||
"github.com/filecoin-project/lotus/provider/lpffi"
|
"github.com/filecoin-project/lotus/provider/lpffi"
|
||||||
"github.com/filecoin-project/lotus/provider/lpseal"
|
"github.com/filecoin-project/lotus/provider/lpseal"
|
||||||
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
||||||
"github.com/ipfs/go-cid"
|
|
||||||
logging "github.com/ipfs/go-log/v2"
|
|
||||||
"golang.org/x/xerrors"
|
|
||||||
"net/http"
|
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var log = logging.Logger("lppiece")
|
var log = logging.Logger("lppiece")
|
||||||
|
@ -9,11 +9,12 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/filecoin-project/go-state-types/abi"
|
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
"github.com/ipfs/go-cid"
|
"github.com/ipfs/go-cid"
|
||||||
logging "github.com/ipfs/go-log/v2"
|
logging "github.com/ipfs/go-log/v2"
|
||||||
|
|
||||||
|
"github.com/filecoin-project/go-state-types/abi"
|
||||||
|
|
||||||
"github.com/filecoin-project/lotus/storage/sealer/partialfile"
|
"github.com/filecoin-project/lotus/storage/sealer/partialfile"
|
||||||
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
||||||
"github.com/filecoin-project/lotus/storage/sealer/tarutil"
|
"github.com/filecoin-project/lotus/storage/sealer/tarutil"
|
||||||
|
Loading…
Reference in New Issue
Block a user