Skip to content

Commit

Permalink
br: Fail backup if any snapshots failed (#53038) (#53112)
Browse files Browse the repository at this point in the history
close #53037
  • Loading branch information
ti-chi-bot committed May 13, 2024
1 parent b004a3f commit 317892c
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 0 deletions.
2 changes: 2 additions & 0 deletions br/pkg/aws/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ go_test(
srcs = ["ebs_test.go"],
embed = [":aws"],
flaky = True,
shard_count = 3,
deps = [
"@com_github_aws_aws_sdk_go//aws",
"@com_github_aws_aws_sdk_go//service/ec2",
"@com_github_aws_aws_sdk_go//service/ec2/ec2iface",
"@com_github_stretchr_testify//require",
],
)
3 changes: 3 additions & 0 deletions br/pkg/aws/ebs.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@ func (e *EC2Session) WaitSnapshotsCreated(snapIDMap map[string]string, progress
if *s.State == ec2.SnapshotStateCompleted {
log.Info("snapshot completed", zap.String("id", *s.SnapshotId))
totalVolumeSize += *s.VolumeSize
} else if *s.State == ec2.SnapshotStateError {
log.Error("snapshot failed", zap.String("id", *s.SnapshotId), zap.String("error", (*s.StateMessage)))
return 0, errors.Errorf("snapshot %s failed", *s.SnapshotId)
} else {
log.Debug("snapshot creating...", zap.Stringer("snap", s))
uncompletedSnapshots = append(uncompletedSnapshots, s.SnapshotId)
Expand Down
126 changes: 126 additions & 0 deletions br/pkg/aws/ebs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
package aws

import (
"context"
"testing"

awsapi "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2/ec2iface"
"github.com/stretchr/testify/require"
)

Expand Down Expand Up @@ -76,3 +78,127 @@ func TestHandleDescribeVolumesResponse(t *testing.T) {
require.Equal(t, int64(4), createdVolumeSize)
require.Equal(t, 1, len(unfinishedVolumes))
}

type mockEC2 struct {
ec2iface.EC2API
output ec2.DescribeSnapshotsOutput
}

func (m mockEC2) DescribeSnapshots(*ec2.DescribeSnapshotsInput) (*ec2.DescribeSnapshotsOutput, error) {
return &m.output, nil
}

func NewMockEc2Session(mock mockEC2) *EC2Session {
return &EC2Session{
ec2: mock,
}
}

func TestWaitSnapshotsCreated(t *testing.T) {
snapIdMap := map[string]string{
"vol-1": "snap-1",
"vol-2": "snap-2",
}

cases := []struct {
desc string
snapshotsOutput ec2.DescribeSnapshotsOutput
expectedSize int64
expectErr bool
expectTimeout bool
}{
{
desc: "snapshots are all completed",
snapshotsOutput: ec2.DescribeSnapshotsOutput{
Snapshots: []*ec2.Snapshot{
{
SnapshotId: awsapi.String("snap-1"),
VolumeSize: awsapi.Int64(1),
State: awsapi.String(ec2.SnapshotStateCompleted),
},
{
SnapshotId: awsapi.String("snap-2"),
VolumeSize: awsapi.Int64(2),
State: awsapi.String(ec2.SnapshotStateCompleted),
},
},
},
expectedSize: 3,
expectErr: false,
},
{
desc: "snapshot failed",
snapshotsOutput: ec2.DescribeSnapshotsOutput{
Snapshots: []*ec2.Snapshot{
{
SnapshotId: awsapi.String("snap-1"),
VolumeSize: awsapi.Int64(1),
State: awsapi.String(ec2.SnapshotStateCompleted),
},
{
SnapshotId: awsapi.String("snap-2"),
State: awsapi.String(ec2.SnapshotStateError),
StateMessage: awsapi.String("snapshot failed"),
},
},
},
expectedSize: 0,
expectErr: true,
},
{
desc: "snapshots pending",
snapshotsOutput: ec2.DescribeSnapshotsOutput{
Snapshots: []*ec2.Snapshot{
{
SnapshotId: awsapi.String("snap-1"),
VolumeSize: awsapi.Int64(1),
State: awsapi.String(ec2.SnapshotStateCompleted),
},
{
SnapshotId: awsapi.String("snap-2"),
State: awsapi.String(ec2.SnapshotStatePending),
},
},
},
expectTimeout: true,
},
}

for _, c := range cases {
e := NewMockEc2Session(mockEC2{
output: c.snapshotsOutput,
})

if c.expectTimeout {
func() {
// We wait 5s before checking snapshots
ctx, cancel := context.WithTimeout(context.Background(), 6)
defer cancel()

done := make(chan struct{})
go func() {
_, _ = e.WaitSnapshotsCreated(snapIdMap, nil)
done <- struct{}{}
}()

select {
case <-done:
t.Fatal("WaitSnapshotsCreated should not return before timeout")
case <-ctx.Done():
require.True(t, true)
}
}()

continue
}

size, err := e.WaitSnapshotsCreated(snapIdMap, nil)
if c.expectErr {
require.Error(t, err)
} else {
require.NoError(t, err)
}

require.Equal(t, c.expectedSize, size)
}
}

0 comments on commit 317892c

Please sign in to comment.