Thiago Scodeler
Thiago Scodeler

Reputation: 337

Is there a way to visualize ongoing sessions/transaction on AWS QLDB?

I want to know if there is any metric related to QLDB where I could monitor the active ongoing sessions/transactions?

Upvotes: 0

Views: 93

Answers (1)

bwinchester
bwinchester

Reputation: 91

QLDB doesn't have an Active Query List view like some databases, due to its 30 second transaction limits and PartiQL limits. However, you can use CloudWatch, or some similar logging tool to understand Read and Write IOs, processing time, OccConflictExceptions, and SessionRateExceededExceptions to understand how to tune connections.

https://docs.aws.amazon.com/qldb/latest/developerguide/monitoring-cloudwatch.html

Upvotes: 1

Related Questions