2023-11-15 01:00:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-12-02 22:32:13 +00:00
|
|
|
"database/sql"
|
2023-11-15 01:00:23 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2023-11-22 04:10:25 +00:00
|
|
|
"time"
|
2023-11-15 01:00:23 +00:00
|
|
|
|
2023-11-15 01:53:00 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2023-11-15 01:00:23 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-state-types/dline"
|
2023-11-15 01:53:00 +00:00
|
|
|
|
2023-11-17 00:22:03 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/harmony/harmonydb"
|
2023-11-15 01:00:23 +00:00
|
|
|
"github.com/filecoin-project/lotus/provider"
|
|
|
|
)
|
|
|
|
|
2023-11-21 00:05:59 +00:00
|
|
|
var testCmd = &cli.Command{
|
|
|
|
Name: "test",
|
|
|
|
Usage: "Utility functions for testing",
|
2023-11-15 01:00:23 +00:00
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
//provingInfoCmd,
|
2023-11-21 00:05:59 +00:00
|
|
|
wdPostCmd,
|
2023-11-15 01:00:23 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-11-21 00:05:59 +00:00
|
|
|
var wdPostCmd = &cli.Command{
|
|
|
|
Name: "window-post",
|
|
|
|
Aliases: []string{"wd", "windowpost", "wdpost"},
|
|
|
|
Usage: "Compute a proof-of-spacetime for a sector (requires the sector to be pre-sealed). These will not send to the chain.",
|
2023-11-15 01:00:23 +00:00
|
|
|
Subcommands: []*cli.Command{
|
2023-11-21 00:05:59 +00:00
|
|
|
wdPostHereCmd,
|
|
|
|
wdPostTaskCmd,
|
2023-11-17 00:22:03 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-11-22 04:43:13 +00:00
|
|
|
// wdPostTaskCmd writes to harmony_task and wdpost_partition_tasks, then waits for the result.
|
|
|
|
// It is intended to be used to test the windowpost scheduler.
|
|
|
|
// The end of the compute task puts the task_id onto wdpost_proofs, which is read by the submit task.
|
|
|
|
// The submit task will not send test tasks to the chain, and instead will write the result to harmony_test.
|
|
|
|
// The result is read by this command, and printed to stdout.
|
2023-11-21 00:05:59 +00:00
|
|
|
var wdPostTaskCmd = &cli.Command{
|
|
|
|
Name: "task",
|
|
|
|
Aliases: []string{"scheduled", "schedule", "async", "asynchronous"},
|
|
|
|
Usage: "Test the windowpost scheduler by running it on the next available lotus-provider. ",
|
2023-11-17 00:22:03 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.Uint64Flag{
|
|
|
|
Name: "deadline",
|
|
|
|
Usage: "deadline to compute WindowPoSt for ",
|
|
|
|
Value: 0,
|
|
|
|
},
|
|
|
|
&cli.StringSliceFlag{
|
|
|
|
Name: "layers",
|
|
|
|
Usage: "list of layers to be interpreted (atop defaults). Default: base",
|
|
|
|
Value: cli.NewStringSlice("base"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
deps, err := getDeps(ctx, cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ts, err := deps.full.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("cannot get chainhead %w", err)
|
|
|
|
}
|
|
|
|
ht := ts.Height()
|
2023-11-17 13:43:58 +00:00
|
|
|
|
|
|
|
addr, err := address.NewFromString(deps.cfg.Addresses.MinerAddresses[0])
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("cannot get miner address %w", err)
|
|
|
|
}
|
|
|
|
maddr, err := address.IDFromAddress(addr)
|
2023-11-17 00:22:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("cannot get miner id %w", err)
|
|
|
|
}
|
2023-11-22 04:10:25 +00:00
|
|
|
var id int64
|
|
|
|
_, err = deps.db.BeginTransaction(ctx, func(tx *harmonydb.Tx) (commit bool, err error) {
|
|
|
|
err = tx.QueryRow(`INSERT INTO harmony_task (name, posted_time, added_by) VALUES ('WdPost', CURRENT_TIMESTAMP, 123) RETURNING id`).Scan(&id)
|
2023-11-17 00:22:03 +00:00
|
|
|
if err != nil {
|
2023-11-17 13:43:58 +00:00
|
|
|
log.Error("inserting harmony_task: ", err)
|
2023-11-17 00:22:03 +00:00
|
|
|
return false, xerrors.Errorf("inserting harmony_task: %w", err)
|
|
|
|
}
|
|
|
|
_, err = tx.Exec(`INSERT INTO wdpost_partition_tasks
|
|
|
|
(task_id, sp_id, proving_period_start, deadline_index, partition_index) VALUES ($1, $2, $3, $4, $5)`,
|
2023-11-17 13:43:58 +00:00
|
|
|
id, maddr, ht, cctx.Uint64("deadline"), 0)
|
2023-11-17 00:22:03 +00:00
|
|
|
if err != nil {
|
2023-11-17 13:43:58 +00:00
|
|
|
log.Error("inserting wdpost_partition_tasks: ", err)
|
2023-11-17 00:22:03 +00:00
|
|
|
return false, xerrors.Errorf("inserting wdpost_partition_tasks: %w", err)
|
|
|
|
}
|
2023-11-21 00:05:59 +00:00
|
|
|
_, err = tx.Exec("INSERT INTO harmony_test (task_id) VALUES ($1)", id)
|
|
|
|
if err != nil {
|
|
|
|
return false, xerrors.Errorf("inserting into harmony_tests: %w", err)
|
|
|
|
}
|
2023-11-17 00:22:03 +00:00
|
|
|
return true, nil
|
|
|
|
})
|
2023-11-17 13:43:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("writing SQL transaction: %w", err)
|
|
|
|
}
|
2023-11-22 04:10:25 +00:00
|
|
|
fmt.Printf("Inserted task %v. Waiting for success ", id)
|
2023-12-02 22:32:13 +00:00
|
|
|
var result sql.NullString
|
2023-11-22 04:10:25 +00:00
|
|
|
for {
|
|
|
|
time.Sleep(time.Second)
|
2023-11-25 15:15:09 +00:00
|
|
|
err = deps.db.QueryRow(ctx, `SELECT result FROM harmony_test WHERE task_id=$1`, id).Scan(&result)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("reading result from harmony_test: %w", err)
|
|
|
|
}
|
2023-12-02 22:32:13 +00:00
|
|
|
if result.Valid {
|
2023-11-22 04:10:25 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
fmt.Print(".")
|
|
|
|
}
|
2023-12-02 22:32:13 +00:00
|
|
|
log.Infof("Result:", result.String)
|
2023-11-17 00:22:03 +00:00
|
|
|
return nil
|
2023-11-15 01:00:23 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-11-22 04:43:13 +00:00
|
|
|
// This command is intended to be used to verify PoSt compute performance.
|
|
|
|
// It will not send any messages to the chain. Since it can compute any deadline, output may be incorrectly timed for the chain.
|
|
|
|
// The entire processing happens in this process while you wait. It does not use the scheduler.
|
2023-11-21 00:05:59 +00:00
|
|
|
var wdPostHereCmd = &cli.Command{
|
|
|
|
Name: "here",
|
|
|
|
Aliases: []string{"cli"},
|
2023-11-15 01:00:23 +00:00
|
|
|
Usage: "Compute WindowPoSt for performance and configuration testing.",
|
|
|
|
Description: `Note: This command is intended to be used to verify PoSt compute performance.
|
|
|
|
It will not send any messages to the chain. Since it can compute any deadline, output may be incorrectly timed for the chain.`,
|
|
|
|
ArgsUsage: "[deadline index]",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.Uint64Flag{
|
|
|
|
Name: "deadline",
|
|
|
|
Usage: "deadline to compute WindowPoSt for ",
|
|
|
|
Value: 0,
|
|
|
|
},
|
|
|
|
&cli.StringSliceFlag{
|
|
|
|
Name: "layers",
|
|
|
|
Usage: "list of layers to be interpreted (atop defaults). Default: base",
|
|
|
|
Value: cli.NewStringSlice("base"),
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "storage-json",
|
|
|
|
Usage: "path to json file containing storage config",
|
|
|
|
Value: "~/.lotus-provider/storage.json",
|
|
|
|
},
|
|
|
|
&cli.Uint64Flag{
|
|
|
|
Name: "partition",
|
|
|
|
Usage: "partition to compute WindowPoSt for",
|
|
|
|
Value: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
|
|
|
|
ctx := context.Background()
|
2023-11-15 04:58:43 +00:00
|
|
|
deps, err := getDeps(ctx, cctx)
|
2023-11-15 01:00:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-11-29 15:22:20 +00:00
|
|
|
wdPostTask, wdPoStSubmitTask, derlareRecoverTask, err := provider.WindowPostScheduler(ctx, deps.cfg.Fees, deps.cfg.Proving, deps.full, deps.verif, deps.lw, nil,
|
2023-11-15 01:00:23 +00:00
|
|
|
deps.as, deps.maddrs, deps.db, deps.stor, deps.si, deps.cfg.Subsystems.WindowPostMaxTasks)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, _ = wdPoStSubmitTask, derlareRecoverTask
|
|
|
|
|
|
|
|
if len(deps.maddrs) == 0 {
|
|
|
|
return errors.New("no miners to compute WindowPoSt for")
|
|
|
|
}
|
|
|
|
head, err := deps.full.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("failed to get chain head: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
di := dline.NewInfo(head.Height(), cctx.Uint64("deadline"), 0, 0, 0, 10 /*challenge window*/, 0, 0)
|
|
|
|
|
|
|
|
for _, maddr := range deps.maddrs {
|
|
|
|
out, err := wdPostTask.DoPartition(ctx, head, address.Address(maddr), di, cctx.Uint64("partition"))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error computing WindowPoSt for miner", maddr, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fmt.Println("Computed WindowPoSt for miner", maddr, ":")
|
|
|
|
err = json.NewEncoder(os.Stdout).Encode(out)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Could not encode WindowPoSt output for miner", maddr, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|