WL#5864: PERFORMANCE SCHEMA, instrument TRANSACTIONS

Affects: Server-5.7   —   Status: Complete

Add transaction instrumentation to the Performance Schema. This instrumentation
will expose all aspects of transaction operation within the server and the
storage engines. The information collected will include quantitative and
qualitative data including transaction duration, transaction counts, frequency
of various transaction attributes such as isolation level and access modes. This
information will be aggregated across several dimensions, including user,
account, session. 

===============================================================================
Target Audience
===============================================================================

The information collected will be useful to developers and production engineers
alike.

* Server core developers

MySQL server and storage engine developers will be able to use the results of
this instrumentation to evaluate the overall performance impact of a server
change when doing benchmarks.

* Application developers

As with statement instrumentation, the primary target audience for this
instrumentation are application developers writing queries against the database
server.

Application developers can use the results of this instrumentation to change how
the application issues queries against the database, to minimize the application
footprint on the server, and improve the application performances / scalability.

In particular, this instrumentation can be used to see in detail the
transactions generated by the application, and to see how these transactions are
executed by the server.

* Production engineers

The secondary audience for this instrumentation are production engineers
monitoring the impact of applications against a database server.

Production engineers are expected to use the results of this instrumentation to
monitor and assess the impact of an application on the whole system during
deployment.

The aggregation of transaction and statement statistics per connection can be
used to monitor the general behavior of an application on the connection.

1) Diagnose problems with a connection;
2) Identify 'stuck' transactions that are blocking other resources or 
statements;
3) Monitor application activity by user and by account.

User Documentation
==================

http://dev.mysql.com/doc/refman/5.7/en/performance-schema-transaction-
tables.html
http://dev.mysql.com/doc/refman/5.7/en/transaction-summary-tables.html
http://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-3.html