2018-11-08 16:18:28 +00:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-14 01:22:18 +00:00
|
|
|
package tally
|
2018-11-08 16:18:28 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
|
|
"go.uber.org/zap"
|
2018-12-07 09:59:31 +00:00
|
|
|
|
2018-12-05 14:03:23 +00:00
|
|
|
"storj.io/storj/pkg/accounting"
|
2018-12-07 09:59:31 +00:00
|
|
|
"storj.io/storj/pkg/bwagreement"
|
2018-11-08 16:18:28 +00:00
|
|
|
"storj.io/storj/pkg/pb"
|
|
|
|
"storj.io/storj/pkg/pointerdb"
|
2018-11-29 18:39:27 +00:00
|
|
|
"storj.io/storj/pkg/storj"
|
2018-11-08 16:18:28 +00:00
|
|
|
"storj.io/storj/storage"
|
|
|
|
)
|
|
|
|
|
2019-01-23 19:58:44 +00:00
|
|
|
// Config contains configurable values for tally
|
|
|
|
type Config struct {
|
|
|
|
Interval time.Duration `help:"how frequently tally should run" default:"30s"`
|
2018-11-08 16:18:28 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 19:58:44 +00:00
|
|
|
// Tally is the service for accounting for data stored on each storage node
|
|
|
|
type Tally struct { // TODO: rename Tally to Service
|
2019-01-19 18:58:53 +00:00
|
|
|
pointerdb *pointerdb.Service
|
2019-01-23 19:58:44 +00:00
|
|
|
overlay pb.OverlayServer // TODO: this should be *overlay.Service
|
2018-12-14 14:27:21 +00:00
|
|
|
limit int
|
|
|
|
logger *zap.Logger
|
|
|
|
ticker *time.Ticker
|
|
|
|
accountingDB accounting.DB
|
|
|
|
bwAgreementDB bwagreement.DB // bwagreements database
|
2018-11-08 16:18:28 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 19:58:44 +00:00
|
|
|
// New creates a new Tally
|
|
|
|
func New(logger *zap.Logger, accountingDB accounting.DB, bwAgreementDB bwagreement.DB, pointerdb *pointerdb.Service, overlay pb.OverlayServer, limit int, interval time.Duration) *Tally {
|
|
|
|
return &Tally{
|
2018-12-14 14:27:21 +00:00
|
|
|
pointerdb: pointerdb,
|
|
|
|
overlay: overlay,
|
|
|
|
limit: limit,
|
|
|
|
logger: logger,
|
|
|
|
ticker: time.NewTicker(interval),
|
|
|
|
accountingDB: accountingDB,
|
|
|
|
bwAgreementDB: bwAgreementDB,
|
2018-12-05 14:03:23 +00:00
|
|
|
}
|
2018-11-08 16:18:28 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 19:58:44 +00:00
|
|
|
// Run the Tally loop
|
|
|
|
func (t *Tally) Run(ctx context.Context) (err error) {
|
2018-11-08 16:18:28 +00:00
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
for {
|
2018-12-12 21:24:08 +00:00
|
|
|
err = t.calculateAtRestData(ctx)
|
2018-11-08 16:18:28 +00:00
|
|
|
if err != nil {
|
2018-12-12 21:24:08 +00:00
|
|
|
t.logger.Error("calculateAtRestData failed", zap.Error(err))
|
|
|
|
}
|
2019-01-23 19:58:44 +00:00
|
|
|
err = t.QueryBW(ctx)
|
2018-12-12 21:24:08 +00:00
|
|
|
if err != nil {
|
2019-01-10 11:41:57 +00:00
|
|
|
t.logger.Error("Query for bandwidth failed", zap.Error(err))
|
2018-11-08 16:18:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-t.ticker.C: // wait for the next interval to happen
|
2019-01-23 19:58:44 +00:00
|
|
|
case <-ctx.Done(): // or the Tally is canceled via context
|
2018-11-08 16:18:28 +00:00
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-12 21:24:08 +00:00
|
|
|
// calculateAtRestData iterates through the pieces on pointerdb and calculates
|
|
|
|
// the amount of at-rest data stored on each respective node
|
2019-01-23 19:58:44 +00:00
|
|
|
func (t *Tally) calculateAtRestData(ctx context.Context) (err error) {
|
2018-11-08 16:18:28 +00:00
|
|
|
defer mon.Task()(&ctx)(&err)
|
2019-01-16 19:30:33 +00:00
|
|
|
|
|
|
|
latestTally, isNil, err := t.accountingDB.LastRawTime(ctx, accounting.LastAtRestTally)
|
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var nodeData = make(map[storj.NodeID]float64)
|
2019-01-19 18:58:53 +00:00
|
|
|
err = t.pointerdb.Iterate("", "", true, false,
|
2018-11-08 16:18:28 +00:00
|
|
|
func(it storage.Iterator) error {
|
|
|
|
var item storage.ListItem
|
2018-12-12 21:24:08 +00:00
|
|
|
for it.Next(&item) {
|
2018-11-08 16:18:28 +00:00
|
|
|
pointer := &pb.Pointer{}
|
|
|
|
err = proto.Unmarshal(item.Value, pointer)
|
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(err)
|
|
|
|
}
|
2018-12-12 21:24:08 +00:00
|
|
|
remote := pointer.GetRemote()
|
|
|
|
if remote == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pieces := remote.GetRemotePieces()
|
|
|
|
if pieces == nil {
|
|
|
|
t.logger.Debug("no pieces on remote segment")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
segmentSize := pointer.GetSegmentSize()
|
|
|
|
redundancy := remote.GetRedundancy()
|
|
|
|
if redundancy == nil {
|
|
|
|
t.logger.Debug("no redundancy scheme present")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
minReq := redundancy.GetMinReq()
|
|
|
|
if minReq <= 0 {
|
|
|
|
t.logger.Debug("pointer minReq must be an int greater than 0")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pieceSize := segmentSize / int64(minReq)
|
|
|
|
for _, piece := range pieces {
|
2019-01-17 19:39:32 +00:00
|
|
|
t.logger.Info("found piece on Node ID" + piece.NodeId.String())
|
2019-01-16 19:30:33 +00:00
|
|
|
nodeData[piece.NodeId] += float64(pieceSize)
|
2018-11-08 16:18:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
)
|
2019-01-04 19:54:54 +00:00
|
|
|
if len(nodeData) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2018-12-18 17:18:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(err)
|
|
|
|
}
|
2019-01-16 19:30:33 +00:00
|
|
|
//store byte hours, not just bytes
|
|
|
|
numHours := 1.0 //todo: something more considered?
|
|
|
|
if !isNil {
|
|
|
|
numHours = time.Now().UTC().Sub(latestTally).Hours()
|
2018-12-18 17:18:42 +00:00
|
|
|
}
|
2019-01-18 16:53:23 +00:00
|
|
|
|
|
|
|
latestTally = time.Now().UTC()
|
|
|
|
|
2019-01-16 19:30:33 +00:00
|
|
|
for k := range nodeData {
|
|
|
|
nodeData[k] *= numHours
|
2018-12-18 17:18:42 +00:00
|
|
|
}
|
2019-01-18 16:53:23 +00:00
|
|
|
return Error.Wrap(t.accountingDB.SaveAtRestRaw(ctx, latestTally, isNil, nodeData))
|
2018-11-08 16:18:28 +00:00
|
|
|
}
|
2018-12-05 14:03:23 +00:00
|
|
|
|
2019-01-23 19:58:44 +00:00
|
|
|
// QueryBW queries bandwidth allocation database, selecting all new contracts since the last collection run time.
|
2019-01-10 11:41:57 +00:00
|
|
|
// Grouping by action type, storage node ID and adding total of bandwidth to granular data table.
|
2019-01-23 19:58:44 +00:00
|
|
|
func (t *Tally) QueryBW(ctx context.Context) error {
|
2018-12-18 17:18:42 +00:00
|
|
|
lastBwTally, isNil, err := t.accountingDB.LastRawTime(ctx, accounting.LastBandwidthTally)
|
2018-12-05 14:03:23 +00:00
|
|
|
if err != nil {
|
2018-12-14 14:27:21 +00:00
|
|
|
return Error.Wrap(err)
|
2018-12-05 14:03:23 +00:00
|
|
|
}
|
2018-12-27 09:56:25 +00:00
|
|
|
|
2018-12-07 09:59:31 +00:00
|
|
|
var bwAgreements []bwagreement.Agreement
|
2018-12-14 14:27:21 +00:00
|
|
|
if isNil {
|
2019-01-10 11:41:57 +00:00
|
|
|
t.logger.Info("Tally found no existing bandwidth tracking data")
|
2018-12-14 14:27:21 +00:00
|
|
|
bwAgreements, err = t.bwAgreementDB.GetAgreements(ctx)
|
2018-12-05 14:03:23 +00:00
|
|
|
} else {
|
2018-12-14 14:27:21 +00:00
|
|
|
bwAgreements, err = t.bwAgreementDB.GetAgreementsSince(ctx, lastBwTally)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(err)
|
2018-12-05 14:03:23 +00:00
|
|
|
}
|
|
|
|
if len(bwAgreements) == 0 {
|
|
|
|
t.logger.Info("Tally found no new bandwidth allocations")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// sum totals by node id ... todo: add nodeid as SQL column so DB can do this?
|
2019-01-10 11:41:57 +00:00
|
|
|
var bwTotals accounting.BWTally
|
|
|
|
for i := range bwTotals {
|
2019-01-16 19:30:33 +00:00
|
|
|
bwTotals[i] = make(map[storj.NodeID]int64)
|
2019-01-10 11:41:57 +00:00
|
|
|
}
|
2018-12-05 14:03:23 +00:00
|
|
|
var latestBwa time.Time
|
|
|
|
for _, baRow := range bwAgreements {
|
|
|
|
rbad := &pb.RenterBandwidthAllocation_Data{}
|
2018-12-07 09:59:31 +00:00
|
|
|
if err := proto.Unmarshal(baRow.Agreement, rbad); err != nil {
|
2019-01-23 19:58:44 +00:00
|
|
|
t.logger.DPanic("Could not deserialize renter bwa in Tally query")
|
2018-12-05 14:03:23 +00:00
|
|
|
continue
|
|
|
|
}
|
2019-01-10 11:41:57 +00:00
|
|
|
pbad := &pb.PayerBandwidthAllocation_Data{}
|
|
|
|
if err := proto.Unmarshal(rbad.GetPayerAllocation().GetData(), pbad); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-12-05 14:03:23 +00:00
|
|
|
if baRow.CreatedAt.After(latestBwa) {
|
|
|
|
latestBwa = baRow.CreatedAt
|
|
|
|
}
|
2019-01-16 19:30:33 +00:00
|
|
|
bwTotals[pbad.GetAction()][rbad.StorageNodeId] += rbad.GetTotal()
|
2018-12-05 14:03:23 +00:00
|
|
|
}
|
2019-01-18 16:53:23 +00:00
|
|
|
return Error.Wrap(t.accountingDB.SaveBWRaw(ctx, latestBwa, isNil, bwTotals))
|
2018-12-05 14:03:23 +00:00
|
|
|
}
|