Vino
Vino

Reputation: 21

How to trace dynamoDB transactions

We can see read transactions are breaking dynamodb threshold. I would like to see what query is making this high utilization. I am looking for some report like AWR in oracle. Any suggestions

Upvotes: 2

Views: 2718

Answers (1)

Clarkie
Clarkie

Reputation: 7550

DynamoDB streams would be a great way to monitor activity on the a table but this won't help for monitoring reads. This will most likely have to be handled inside your application code.

If you're using the aws-sdk you can turn on logging

If you're using an abstraction on top of the aws-sdk for example vogels then you can just enable logging in that library too.

I wrote about my experience of predicting the required RCU here

Upvotes: 1

Related Questions