-
Notifications
You must be signed in to change notification settings - Fork 816
Log outstanding writes in DynamoDB #734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -250,6 +250,9 @@ func (a storageClient) BatchWrite(ctx context.Context, input chunk.WriteBatch) e | |
} | ||
|
||
if valuesLeft := outstanding.Len() + unprocessed.Len(); valuesLeft > 0 { | ||
if valuesLeft < 4 { // protect against logging lots of data | ||
level.Info(util.Logger).Log("msg", "DynamoDB BatchWrite values left", "count", valuesLeft, "outstanding", outstanding, "unprocessed", unprocessed) | ||
} | ||
return fmt.Errorf("failed to write chunk, %d values remaining: %s", valuesLeft, backoff.Err()) | ||
} | ||
return backoff.Err() | ||
|
@@ -731,6 +734,7 @@ func (a storageClient) putS3Chunk(ctx context.Context, key string, buf []byte) e | |
}) | ||
} | ||
|
||
// Slice of values returned; map key is attribute name | ||
type dynamoDBReadResponse []map[string]*dynamodb.AttributeValue | ||
|
||
func (b dynamoDBReadResponse) Len() int { | ||
|
@@ -749,6 +753,7 @@ func (b dynamoDBReadResponse) Value(i int) []byte { | |
return chunkValue.B | ||
} | ||
|
||
// map key is table name; value is a slice of things to 'put' | ||
type dynamoDBWriteBatch map[string][]*dynamodb.WriteRequest | ||
|
||
func (b dynamoDBWriteBatch) Len() int { | ||
|
@@ -795,6 +800,31 @@ func (b dynamoDBWriteBatch) TakeReqs(from dynamoDBWriteBatch, max int) { | |
} | ||
} | ||
|
||
func (b dynamoDBWriteBatch) String() string { | ||
buf := &bytes.Buffer{} | ||
for table, reqs := range b { | ||
for _, req := range reqs { | ||
item := req.PutRequest.Item | ||
hash := "" | ||
if hashAttr, ok := item[hashKey]; ok { | ||
if hashAttr.S != nil { | ||
hash = *hashAttr.S | ||
} | ||
} | ||
var rnge, value []byte | ||
if rangeAttr, ok := item[rangeKey]; ok { | ||
rnge = rangeAttr.B | ||
} | ||
if valueAttr, ok := item[valueKey]; ok { | ||
value = valueAttr.B | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Feels like something that could have been statically checked for. Oh well. |
||
fmt.Fprintf(buf, "%s: %s,%.32s,%.32s; ", table, hash, rnge, value) | ||
} | ||
} | ||
return buf.String() | ||
} | ||
|
||
// map key is table name | ||
type dynamoDBReadRequest map[string]*dynamodb.KeysAndAttributes | ||
|
||
func (b dynamoDBReadRequest) Len() int { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this & similar comments. What do you think about a follow-up PR replacing
string
with typedefs?