2019-08-08 14:47:04 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package storagenodedb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
|
2019-12-27 11:48:47 +00:00
|
|
|
"storj.io/common/storj"
|
2021-04-23 10:52:40 +01:00
|
|
|
"storj.io/private/tagsql"
|
2019-08-08 14:47:04 +01:00
|
|
|
"storj.io/storj/storagenode/storageusage"
|
|
|
|
)
|
|
|
|
|
2019-09-18 17:17:28 +01:00
|
|
|
// StorageUsageDBName represents the database name.
|
|
|
|
const StorageUsageDBName = "storage_usage"
|
2019-08-21 15:32:25 +01:00
|
|
|
|
2020-07-16 15:18:02 +01:00
|
|
|
// storageUsageDB storage usage DB.
|
2019-09-18 17:17:28 +01:00
|
|
|
type storageUsageDB struct {
|
2019-11-13 16:49:22 +00:00
|
|
|
dbContainerImpl
|
2019-08-08 14:47:04 +01:00
|
|
|
}
|
|
|
|
|
2020-07-16 15:18:02 +01:00
|
|
|
// Store stores storage usage stamps to db replacing conflicting entries.
|
2019-09-18 17:17:28 +01:00
|
|
|
func (db *storageUsageDB) Store(ctx context.Context, stamps []storageusage.Stamp) (err error) {
|
2019-08-08 14:47:04 +01:00
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
if len(stamps) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-07-21 12:15:03 +01:00
|
|
|
query := `INSERT OR REPLACE INTO storage_usage(satellite_id, at_rest_total, interval_end_time, timestamp)
|
|
|
|
VALUES(?,?,?,?)`
|
2019-08-08 14:47:04 +01:00
|
|
|
|
2020-01-17 19:08:29 +00:00
|
|
|
return withTx(ctx, db.GetDB(), func(tx tagsql.Tx) error {
|
2019-08-08 14:47:04 +01:00
|
|
|
for _, stamp := range stamps {
|
2022-07-21 12:15:03 +01:00
|
|
|
_, err = tx.ExecContext(ctx, query, stamp.SatelliteID, stamp.AtRestTotal, stamp.IntervalEndTime.UTC(), stamp.IntervalStart.UTC())
|
2019-08-08 14:47:04 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDaily returns daily storage usage stamps for particular satellite
|
2020-07-16 15:18:02 +01:00
|
|
|
// for provided time range.
|
2019-09-18 17:17:28 +01:00
|
|
|
func (db *storageUsageDB) GetDaily(ctx context.Context, satelliteID storj.NodeID, from, to time.Time) (_ []storageusage.Stamp, err error) {
|
2019-08-08 14:47:04 +01:00
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
2022-07-21 12:15:03 +01:00
|
|
|
// the at_rest_total is in bytes*hours, so to find the total number
|
|
|
|
// of hours used to get the at_rest_total, we find the hour difference,
|
|
|
|
// between the interval_end_time of a row and that of the previous row
|
|
|
|
// and divide the at_rest_total by the hour interval and multiply by 24 hours
|
|
|
|
// 24 hours to estimate the value for a 24hour time window.
|
|
|
|
// i.e. 24 * (at_rest_total/hour_difference), where the
|
|
|
|
// hour_difference = current row interval_end_time - previous row interval_end_time
|
|
|
|
// Rows with 0-hour difference are assumed to be 24 hours.
|
2019-09-04 15:13:43 +01:00
|
|
|
query := `SELECT satellite_id,
|
2022-08-23 13:19:13 +01:00
|
|
|
COALESCE(24 * (at_rest_total / COALESCE((CAST(strftime('%s', interval_end_time) AS NUMERIC) - CAST(strftime('%s', LAG(interval_end_time) OVER (PARTITION BY satellite_id ORDER BY interval_end_time)) AS NUMERIC)) / 3600, 24)), at_rest_total),
|
2022-07-21 12:15:03 +01:00
|
|
|
timestamp
|
2019-08-08 14:47:04 +01:00
|
|
|
FROM storage_usage
|
2019-09-04 15:13:43 +01:00
|
|
|
WHERE satellite_id = ?
|
2022-07-21 12:15:03 +01:00
|
|
|
AND ? <= timestamp AND timestamp <= ?
|
|
|
|
ORDER BY timestamp`
|
2019-08-08 14:47:04 +01:00
|
|
|
|
2019-08-21 15:32:25 +01:00
|
|
|
rows, err := db.QueryContext(ctx, query, satelliteID, from.UTC(), to.UTC())
|
2019-08-08 14:47:04 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-16 14:36:50 +00:00
|
|
|
defer func() { err = errs.Combine(err, rows.Close()) }()
|
2019-08-08 14:47:04 +01:00
|
|
|
|
|
|
|
var stamps []storageusage.Stamp
|
|
|
|
for rows.Next() {
|
|
|
|
var satellite storj.NodeID
|
|
|
|
var atRestTotal float64
|
2022-07-21 12:15:03 +01:00
|
|
|
var timestamp time.Time
|
2019-08-08 14:47:04 +01:00
|
|
|
|
2022-07-21 12:15:03 +01:00
|
|
|
err = rows.Scan(&satellite, &atRestTotal, ×tamp)
|
2019-08-08 14:47:04 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
stamps = append(stamps, storageusage.Stamp{
|
2019-09-04 15:13:43 +01:00
|
|
|
SatelliteID: satellite,
|
|
|
|
AtRestTotal: atRestTotal,
|
2022-07-21 12:15:03 +01:00
|
|
|
IntervalStart: timestamp,
|
2019-08-08 14:47:04 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-01-16 14:36:50 +00:00
|
|
|
return stamps, rows.Err()
|
2019-08-08 14:47:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetDailyTotal returns daily storage usage stamps summed across all known satellites
|
2020-07-16 15:18:02 +01:00
|
|
|
// for provided time range.
|
2019-09-18 17:17:28 +01:00
|
|
|
func (db *storageUsageDB) GetDailyTotal(ctx context.Context, from, to time.Time) (_ []storageusage.Stamp, err error) {
|
2019-08-08 14:47:04 +01:00
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
2022-07-21 12:15:03 +01:00
|
|
|
// the at_rest_total is in bytes*hours, so to find the total number
|
|
|
|
// of hours used to get the at_rest_total, we find the hour difference,
|
|
|
|
// between the interval_end_time of a row and that of the previous row
|
|
|
|
// and divide the at_rest_total by the hour interval and multiply by 24 hours
|
|
|
|
// 24 hours to estimate the value for a 24hour time window.
|
|
|
|
// i.e. 24 * (at_rest_total/hour_difference), where the
|
|
|
|
// hour_difference = current row interval_end_time - previous row interval_end_time
|
|
|
|
// Rows with 0-hour difference are assumed to be 24 hours.
|
|
|
|
query := `SELECT SUM(usages.at_rest_total), usages.timestamp
|
|
|
|
FROM (
|
|
|
|
SELECT timestamp,
|
2022-08-23 13:19:13 +01:00
|
|
|
COALESCE(24 * (at_rest_total / COALESCE((CAST(strftime('%s', interval_end_time) AS NUMERIC) - CAST(strftime('%s', LAG(interval_end_time) OVER (PARTITION BY satellite_id ORDER BY interval_end_time)) AS NUMERIC)) / 3600, 24)), at_rest_total) AS at_rest_total
|
2022-07-21 12:15:03 +01:00
|
|
|
FROM storage_usage
|
|
|
|
WHERE ? <= timestamp AND timestamp <= ?
|
|
|
|
) as usages
|
|
|
|
GROUP BY usages.timestamp
|
|
|
|
ORDER BY usages.timestamp`
|
2019-08-08 14:47:04 +01:00
|
|
|
|
2019-08-21 15:32:25 +01:00
|
|
|
rows, err := db.QueryContext(ctx, query, from.UTC(), to.UTC())
|
2019-08-08 14:47:04 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
err = errs.Combine(err, rows.Close())
|
|
|
|
}()
|
|
|
|
|
|
|
|
var stamps []storageusage.Stamp
|
|
|
|
for rows.Next() {
|
|
|
|
var atRestTotal float64
|
2022-07-21 12:15:03 +01:00
|
|
|
var timestamp time.Time
|
2019-08-08 14:47:04 +01:00
|
|
|
|
2022-07-21 12:15:03 +01:00
|
|
|
err = rows.Scan(&atRestTotal, ×tamp)
|
2019-08-08 14:47:04 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
stamps = append(stamps, storageusage.Stamp{
|
2019-09-04 15:13:43 +01:00
|
|
|
AtRestTotal: atRestTotal,
|
2022-07-21 12:15:03 +01:00
|
|
|
IntervalStart: timestamp,
|
2019-08-08 14:47:04 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-01-16 14:36:50 +00:00
|
|
|
return stamps, rows.Err()
|
2019-08-08 14:47:04 +01:00
|
|
|
}
|
2019-08-21 15:32:25 +01:00
|
|
|
|
2019-09-04 15:13:43 +01:00
|
|
|
// Summary returns aggregated storage usage across all satellites.
|
2019-09-18 17:17:28 +01:00
|
|
|
func (db *storageUsageDB) Summary(ctx context.Context, from, to time.Time) (_ float64, err error) {
|
2019-09-04 15:13:43 +01:00
|
|
|
defer mon.Task()(&ctx, from, to)(&err)
|
|
|
|
var summary sql.NullFloat64
|
|
|
|
|
2019-11-13 16:49:22 +00:00
|
|
|
query := `SELECT SUM(at_rest_total)
|
2019-09-04 15:13:43 +01:00
|
|
|
FROM storage_usage
|
2022-07-21 12:15:03 +01:00
|
|
|
WHERE ? <= timestamp AND timestamp <= ?`
|
2019-09-04 15:13:43 +01:00
|
|
|
|
|
|
|
err = db.QueryRowContext(ctx, query, from.UTC(), to.UTC()).Scan(&summary)
|
|
|
|
return summary.Float64, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// SatelliteSummary returns aggregated storage usage for a particular satellite.
|
2019-09-18 17:17:28 +01:00
|
|
|
func (db *storageUsageDB) SatelliteSummary(ctx context.Context, satelliteID storj.NodeID, from, to time.Time) (_ float64, err error) {
|
2019-09-04 15:13:43 +01:00
|
|
|
defer mon.Task()(&ctx, satelliteID, from, to)(&err)
|
|
|
|
var summary sql.NullFloat64
|
|
|
|
|
2019-11-13 16:49:22 +00:00
|
|
|
query := `SELECT SUM(at_rest_total)
|
2019-09-04 15:13:43 +01:00
|
|
|
FROM storage_usage
|
|
|
|
WHERE satellite_id = ?
|
2022-07-21 12:15:03 +01:00
|
|
|
AND ? <= timestamp AND timestamp <= ?`
|
2019-09-04 15:13:43 +01:00
|
|
|
|
|
|
|
err = db.QueryRowContext(ctx, query, satelliteID, from.UTC(), to.UTC()).Scan(&summary)
|
|
|
|
return summary.Float64, err
|
|
|
|
}
|