You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 30, 2019. It is now read-only.
@joewalker just reported this. His response time drifted up from ~400msec to ~5000msec over a few days.
Obviously we should point some performance tools at this, but if I had one guess:
Every transact yields a new DB, swap!ping it into the connection. Every tx-report holds on to the previous and subsequent DB. If there's any link between the DB and its last report, then we'll retain every DB instance back to the first. So I'd start looking at the connection and the DB, and work backwards from there, see if anything like that is going on.
The text was updated successfully, but these errors were encountered:
@joewalker just reported this. His response time drifted up from ~400msec to ~5000msec over a few days.
Obviously we should point some performance tools at this, but if I had one guess:
Every transact yields a new DB,
swap!
ping it into the connection. Everytx-report
holds on to the previous and subsequent DB. If there's any link between the DB and its last report, then we'll retain every DB instance back to the first. So I'd start looking at the connection and the DB, and work backwards from there, see if anything like that is going on.The text was updated successfully, but these errors were encountered: