Documentation ¶
Index ¶
- Variables
- type BlobsCleaner
- type Chore
- type Config
- type Endpoint
- func (e *Endpoint) GetExitProgress(ctx context.Context, req *pb.GetExitProgressRequest) (*pb.GetExitProgressResponse, error)
- func (e *Endpoint) GetNonExitingSatellites(ctx context.Context, req *pb.GetNonExitingSatellitesRequest) (*pb.GetNonExitingSatellitesResponse, error)
- func (e *Endpoint) GracefulExitFeasibility(ctx context.Context, request *pb.GracefulExitFeasibilityNodeRequest) (*pb.GracefulExitFeasibilityResponse, error)
- func (e *Endpoint) InitiateGracefulExit(ctx context.Context, req *pb.InitiateGracefulExitRequest) (*pb.ExitProgress, error)
- type Worker
Constants ¶
This section is empty.
Variables ¶
var ( // Error is the default error class for graceful exit package. Error = errs.Class("gracefulexit") )
Functions ¶
This section is empty.
Types ¶
type BlobsCleaner ¶ added in v1.8.1
type BlobsCleaner struct {
// contains filtered or unexported fields
}
BlobsCleaner checks for satellites that the node has completed exit successfully and clear blobs of it.
architecture: Chore
func NewBlobsCleaner ¶ added in v1.8.1
func NewBlobsCleaner(log *zap.Logger, store *pieces.Store, trust *trust.Pool, satelliteDB satellites.DB) *BlobsCleaner
NewBlobsCleaner instantiates BlobsCleaner.
func (*BlobsCleaner) RemoveBlobs ¶ added in v1.8.1
func (blobsCleaner *BlobsCleaner) RemoveBlobs(ctx context.Context) (err error)
RemoveBlobs runs blobs cleaner for satellites on which GE is completed. On node's restart checks if any of trusted satellites has GE status "successfully exited" Deletes blobs/satellite folder if exists, so if garbage collector didn't clean all SNO won't keep trash.
type Chore ¶
Chore checks for satellites that the node is exiting and creates a worker per satellite to complete the process.
architecture: Chore
func NewChore ¶
func NewChore(log *zap.Logger, config Config, store *pieces.Store, trust *trust.Pool, dialer rpc.Dialer, satelliteDB satellites.DB) *Chore
NewChore instantiates Chore.
func (*Chore) TestWaitForWorkers ¶ added in v1.12.1
func (chore *Chore) TestWaitForWorkers()
TestWaitForWorkers waits for any pending worker to finish.
type Config ¶
type Config struct { ChoreInterval time.Duration `help:"how often to run the chore to check for satellites for the node to exit." releaseDefault:"1m" devDefault:"10s"` NumWorkers int `help:"number of workers to handle satellite exits" default:"4"` NumConcurrentTransfers int `help:"number of concurrent transfers per graceful exit worker" default:"5"` MinBytesPerSecond memory.Size `help:"the minimum acceptable bytes that an exiting node can transfer per second to the new node" default:"5KB"` MinDownloadTimeout time.Duration `help:"the minimum duration for downloading a piece from storage nodes before timing out" default:"2m"` }
Config for graceful exit.
type Endpoint ¶
type Endpoint struct {
// contains filtered or unexported fields
}
Endpoint implements private inspector for Graceful Exit.
func NewEndpoint ¶
func NewEndpoint(log *zap.Logger, trust *trust.Pool, satellites satellites.DB, dialer rpc.Dialer, usageCache *pieces.BlobsUsageCache) *Endpoint
NewEndpoint creates a new graceful exit endpoint.
func (*Endpoint) GetExitProgress ¶
func (e *Endpoint) GetExitProgress(ctx context.Context, req *pb.GetExitProgressRequest) (*pb.GetExitProgressResponse, error)
GetExitProgress returns graceful exit progress on each satellite that a storagde node has started exiting.
func (*Endpoint) GetNonExitingSatellites ¶
func (e *Endpoint) GetNonExitingSatellites(ctx context.Context, req *pb.GetNonExitingSatellitesRequest) (*pb.GetNonExitingSatellitesResponse, error)
GetNonExitingSatellites returns a list of satellites that the storagenode has not begun a graceful exit for.
func (*Endpoint) GracefulExitFeasibility ¶ added in v1.7.1
func (e *Endpoint) GracefulExitFeasibility(ctx context.Context, request *pb.GracefulExitFeasibilityNodeRequest) (*pb.GracefulExitFeasibilityResponse, error)
GracefulExitFeasibility returns graceful exit feasibility by node's age on chosen satellite.
func (*Endpoint) InitiateGracefulExit ¶
func (e *Endpoint) InitiateGracefulExit(ctx context.Context, req *pb.InitiateGracefulExitRequest) (*pb.ExitProgress, error)
InitiateGracefulExit updates one or more satellites in the storagenode's database to be gracefully exiting.
type Worker ¶
type Worker struct {
// contains filtered or unexported fields
}
Worker is responsible for completing the graceful exit for a given satellite.