MediaWiki
1.30.0
|
Helper class that detects high-contention DB queries via profiling calls. More...
Public Member Functions | |
__construct () | |
recordConnection ( $server, $db, $isMaster) | |
Mark a DB as having been connected to with a new handle. More... | |
recordQueryCompletion ( $query, $sTime, $isWrite=false, $n=0) | |
Register the name and time of a method for slow DB trx detection. More... | |
resetExpectations () | |
Reset performance expectations and hit counters. More... | |
setExpectation ( $event, $value, $fname) | |
Set performance expectations. More... | |
setExpectations (array $expects, $fname) | |
Set multiple performance expectations. More... | |
setLogger (LoggerInterface $logger) | |
setSilenced ( $value) | |
transactionWritingIn ( $server, $db, $id) | |
Mark a DB as in a transaction with one or more writes pending. More... | |
transactionWritingOut ( $server, $db, $id, $writeTime=0.0, $affected=0) | |
Mark a DB as no longer in a transaction. More... | |
Protected Member Functions | |
reportExpectationViolated ( $expect, $query, $actual) | |
Protected Attributes | |
float | $dbLockThreshold = 3.0 |
Seconds. More... | |
array | $dbTrxHoldingLocks = [] |
transaction ID => (write start time, list of DBs involved) More... | |
array | $dbTrxMethodTimes = [] |
transaction ID => list of (query name, start time, end time) More... | |
float | $eventThreshold = 0.25 |
Seconds. More... | |
array | $expect |
array | $expectBy = [] |
array | $hits |
bool | $silenced = false |
Private Attributes | |
LoggerInterface | $logger |
Helper class that detects high-contention DB queries via profiling calls.
This class is meant to work with an IDatabase object, which manages queries
Definition at line 38 of file TransactionProfiler.php.
Wikimedia\Rdbms\TransactionProfiler::__construct | ( | ) |
Definition at line 76 of file TransactionProfiler.php.
References Wikimedia\Rdbms\TransactionProfiler\setLogger().
Wikimedia\Rdbms\TransactionProfiler::recordConnection | ( | $server, | |
$db, | |||
$isMaster | |||
) |
Mark a DB as having been connected to with a new handle.
Note that there can be multiple connections to a single DB.
string | $server | DB server |
string | $db | DB name |
bool | $isMaster |
Definition at line 156 of file TransactionProfiler.php.
References Wikimedia\Rdbms\TransactionProfiler\reportExpectationViolated().
Wikimedia\Rdbms\TransactionProfiler::recordQueryCompletion | ( | $query, | |
$sTime, | |||
$isWrite = false , |
|||
$n = 0 |
|||
) |
Register the name and time of a method for slow DB trx detection.
This assumes that all queries are synchronous (non-overlapping)
string | $query | Function name or generalized SQL |
float | $sTime | Starting UNIX wall time |
bool | $isWrite | Whether this is a write query |
int | $n | Number of affected rows |
Definition at line 204 of file TransactionProfiler.php.
References $name, $query, as, and Wikimedia\Rdbms\TransactionProfiler\reportExpectationViolated().
|
protected |
string | $expect | |
string | $query | |
string | float | int | $actual |
Definition at line 334 of file TransactionProfiler.php.
References Wikimedia\Rdbms\TransactionProfiler\$expect, and $query.
Referenced by Wikimedia\Rdbms\TransactionProfiler\recordConnection(), Wikimedia\Rdbms\TransactionProfiler\recordQueryCompletion(), and Wikimedia\Rdbms\TransactionProfiler\transactionWritingOut().
Wikimedia\Rdbms\TransactionProfiler::resetExpectations | ( | ) |
Reset performance expectations and hit counters.
Definition at line 135 of file TransactionProfiler.php.
References as.
Wikimedia\Rdbms\TransactionProfiler::setExpectation | ( | $event, | |
$value, | |||
$fname | |||
) |
Set performance expectations.
With conflicting expectations, the most narrow ones will be used
string | $event | (writes,queries,conns,mConns) |
int | $value | Maximum count of the event |
string | $fname | Caller |
Definition at line 106 of file TransactionProfiler.php.
References $fname, and $value.
Referenced by Wikimedia\Rdbms\TransactionProfiler\setExpectations().
Wikimedia\Rdbms\TransactionProfiler::setExpectations | ( | array | $expects, |
$fname | |||
) |
Set multiple performance expectations.
With conflicting expectations, the most narrow ones will be used
array | $expects | Map of (event => limit) |
string | $fname |
Definition at line 124 of file TransactionProfiler.php.
References $fname, $value, as, and Wikimedia\Rdbms\TransactionProfiler\setExpectation().
Wikimedia\Rdbms\TransactionProfiler::setLogger | ( | LoggerInterface | $logger | ) |
Definition at line 80 of file TransactionProfiler.php.
References Wikimedia\Rdbms\TransactionProfiler\$logger.
Referenced by Wikimedia\Rdbms\TransactionProfiler\__construct().
Wikimedia\Rdbms\TransactionProfiler::setSilenced | ( | $value | ) |
bool | $value | New value |
Definition at line 89 of file TransactionProfiler.php.
References Wikimedia\Rdbms\TransactionProfiler\$silenced, and $value.
Wikimedia\Rdbms\TransactionProfiler::transactionWritingIn | ( | $server, | |
$db, | |||
$id | |||
) |
Mark a DB as in a transaction with one or more writes pending.
Note that there can be multiple connections to a single DB.
string | $server | DB server |
string | $db | DB name |
string | $id | ID string of transaction |
Definition at line 177 of file TransactionProfiler.php.
Wikimedia\Rdbms\TransactionProfiler::transactionWritingOut | ( | $server, | |
$db, | |||
$id, | |||
$writeTime = 0.0 , |
|||
$affected = 0 |
|||
) |
Mark a DB as no longer in a transaction.
This will check if locks are possibly held for longer than needed and log any affected transactions to a special DB log. Note that there can be multiple connections to a single DB.
string | $server | DB server |
string | $db | DB name |
string | $id | ID string of transaction |
float | $writeTime | Time spent in write queries |
int | $affected | Number of rows affected by writes |
Definition at line 271 of file TransactionProfiler.php.
References $name, $query, as, list, and Wikimedia\Rdbms\TransactionProfiler\reportExpectationViolated().
|
protected |
Seconds.
Definition at line 40 of file TransactionProfiler.php.
|
protected |
transaction ID => (write start time, list of DBs involved)
Definition at line 47 of file TransactionProfiler.php.
|
protected |
transaction ID => list of (query name, start time, end time)
Definition at line 49 of file TransactionProfiler.php.
|
protected |
Seconds.
Definition at line 42 of file TransactionProfiler.php.
|
protected |
Definition at line 59 of file TransactionProfiler.php.
Referenced by Wikimedia\Rdbms\TransactionProfiler\reportExpectationViolated().
|
protected |
Definition at line 69 of file TransactionProfiler.php.
|
protected |
Definition at line 52 of file TransactionProfiler.php.
|
private |
Definition at line 74 of file TransactionProfiler.php.
Referenced by Wikimedia\Rdbms\TransactionProfiler\setLogger().
|
protected |
Definition at line 44 of file TransactionProfiler.php.
Referenced by Wikimedia\Rdbms\TransactionProfiler\setSilenced().