-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
165 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package dynamo | ||
|
||
import ( | ||
"fmt" | ||
"path/filepath" | ||
"strings" | ||
) | ||
|
||
func GetTableArnFromStreamArn(streamArn string) (string, error) { | ||
parts := strings.Split(streamArn, "/stream/") | ||
if len(parts) != 2 { | ||
return "", fmt.Errorf("invalid stream ARN: %s", streamArn) | ||
} | ||
|
||
return parts[0], nil | ||
} | ||
|
||
func ParseManifestFile(bucket string, manifestFilePath string) (string, error) { | ||
// artie-ddb-export/AWSDynamoDB/01722458674792-8831c8f6/manifest-summary.json | ||
if !strings.HasSuffix(manifestFilePath, "manifest-summary.json") { | ||
return "", fmt.Errorf("invalid manifest filepath: %s", manifestFilePath) | ||
} | ||
|
||
parts := strings.Split(manifestFilePath, "/") | ||
return filepath.Join(bucket, strings.Join(parts[:len(parts)-1], "/")), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package dynamo | ||
|
||
import ( | ||
"github.com/stretchr/testify/assert" | ||
"testing" | ||
) | ||
|
||
func TestGetTableArnFromStreamArn(t *testing.T) { | ||
{ | ||
// Valid stream ARN | ||
tableArn, err := GetTableArnFromStreamArn("arn:aws:dynamodb:us-west-2:123456789012:table/my-table/stream/2021-01-01T00:00:00.000") | ||
assert.NoError(t, err) | ||
assert.Equal(t, "arn:aws:dynamodb:us-west-2:123456789012:table/my-table", tableArn) | ||
} | ||
{ | ||
// Invalid stream ARN | ||
_, err := GetTableArnFromStreamArn("arn:aws:dynamodb:us-west-2:123456789012:table/my-table") | ||
assert.ErrorContains(t, err, "invalid stream ARN: arn:aws:dynamodb:us-west-2:123456789012:table/my-table") | ||
} | ||
} | ||
|
||
func TestParseManifestFile(t *testing.T) { | ||
{ | ||
// Valid manifest file path | ||
bucket, err := ParseManifestFile("bucket", "artie-ddb-export/AWSDynamoDB/abcdef-8831c8f6/manifest-summary.json") | ||
assert.NoError(t, err) | ||
assert.Equal(t, "bucket/artie-ddb-export/AWSDynamoDB/abcdef-8831c8f6", bucket) | ||
} | ||
{ | ||
// Invalid manifest file path | ||
_, err := ParseManifestFile("bucket", "artie-ddb-export/AWSDynamoDB/abcdef-8831c8f6/manifest-summary") | ||
assert.ErrorContains(t, err, "invalid manifest filepath: artie-ddb-export/AWSDynamoDB/abcdef-8831c8f6/manifest-summary") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
package snapshot | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"github.com/artie-labs/reader/lib/dynamo" | ||
"github.com/artie-labs/reader/lib/s3lib" | ||
"github.com/aws/aws-sdk-go-v2/aws" | ||
"github.com/aws/aws-sdk-go-v2/service/dynamodb" | ||
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types" | ||
"log/slog" | ||
"time" | ||
) | ||
|
||
func (s *Store) findRecentExport(ctx context.Context, s3FilePath string) (*string, *string, error) { | ||
bucketName, prefixName, err := s3lib.BucketAndPrefixFromFilePath(s3FilePath) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
tableARN, err := dynamo.GetTableArnFromStreamArn(s.streamArn) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("failed to get table ARN from stream ARN: %w", err) | ||
} | ||
|
||
exports, err := s.listExports(ctx, tableARN) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("failed to list exports: %w", err) | ||
} | ||
|
||
for _, export := range exports { | ||
if export.ExportStatus == types.ExportStatusFailed { | ||
slog.Info("Filtering out failed export", slog.String("exportARN", *export.ExportArn)) | ||
continue | ||
} | ||
|
||
exportDescription, err := s.dynamoDBClient.DescribeExport(ctx, &dynamodb.DescribeExportInput{ExportArn: export.ExportArn}) | ||
if err != nil { | ||
return nil, nil, fmt.Errorf("failed to describe export: %w", err) | ||
} | ||
|
||
if exportDescription.ExportDescription.S3Bucket == bucketName && exportDescription.ExportDescription.S3Prefix == prefixName { | ||
if export.ExportStatus == types.ExportStatusCompleted { | ||
return export.ExportArn, exportDescription.ExportDescription.ExportManifest, nil | ||
} | ||
|
||
return export.ExportArn, nil, nil | ||
} | ||
} | ||
|
||
return nil, nil, fmt.Errorf("no recent export found for %s", s3FilePath) | ||
} | ||
|
||
func (s *Store) listExports(ctx context.Context, tableARN string) ([]types.ExportSummary, error) { | ||
var out []types.ExportSummary | ||
|
||
var nextToken *string | ||
for { | ||
exports, err := s.dynamoDBClient.ListExports(ctx, &dynamodb.ListExportsInput{ | ||
TableArn: aws.String(tableARN), | ||
NextToken: nextToken, | ||
}) | ||
|
||
if err != nil { | ||
return nil, fmt.Errorf("failed to list exports: %w", err) | ||
} | ||
|
||
out = append(out, exports.ExportSummaries...) | ||
if exports.NextToken == nil { | ||
break | ||
} | ||
|
||
nextToken = exports.NextToken | ||
} | ||
|
||
return out, nil | ||
} | ||
|
||
func (s *Store) checkExportStatus(ctx context.Context, exportARN *string) (*string, error) { | ||
for { | ||
describeInput := &dynamodb.DescribeExportInput{ | ||
ExportArn: exportARN, | ||
} | ||
|
||
result, err := s.dynamoDBClient.DescribeExport(ctx, describeInput) | ||
if err != nil { | ||
return nil, fmt.Errorf("failed to describe export: %w", err) | ||
} | ||
|
||
switch result.ExportDescription.ExportStatus { | ||
case types.ExportStatusCompleted: | ||
return result.ExportDescription.ExportManifest, nil | ||
case types.ExportStatusFailed: | ||
return nil, fmt.Errorf("export has failed: %s", *result.ExportDescription.FailureMessage) | ||
case types.ExportStatusInProgress: | ||
slog.Info("Export is still in progress") | ||
time.Sleep(30 * time.Second) | ||
default: | ||
return nil, fmt.Errorf("unknown export status: %s", string(result.ExportDescription.ExportStatus)) | ||
} | ||
} | ||
} |