-
Notifications
You must be signed in to change notification settings - Fork 446
Status Variables
Liang Guo edited this page Mar 14, 2014
·
12 revisions
Status variables that provide information about the Twitter MySQL server operation.
Variable Name | Variable Type | Variable Scope |
---|---|---|
Max_statement_time_exceeded | Numeric | Session, Global |
Max_statement_time_set | Numeric | Session, Global |
Max_statement_time_set_failed | Numeric | Session, Global |
Com_insert_noop | Numeric | Session, Global |
Rows_sent | Numeric | Session, Global |
Rows_examined | Numeric | Session, Global |
-
Number of statements that exceeded the maximum execution time.
-
Number of statements that were time-limited.
-
Number of failed attempts to set the maximum execution time.
-
Number of insert/upsert statements that does not insert or update any row.
-
Number of rows sent back to clients.
-
Number of rows examined by MySQL before sent back to clients.