8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:43:02 +01:00
firebird-mirror/doc/README.monitoring_tables

440 lines
20 KiB
Plaintext
Raw Normal View History

2006-12-14 10:14:19 +01:00
-----------------
Monitoring tables
-----------------
Function:
Allow to monitor server-side activity happening inside a particular database.
Concept:
The engine offers a set of so called "virtual" tables that provides the user
with a snapshot of the current activity within the given database. The word
"virtual" means that the table data doesn't exist until explicitly asked for.
However, its metadata is stable and can be retrieved from the schema. Virtual
monitoring tables exist only in ODS 11.1 (and higher) databases, so a
migration via backup/restore is required in order to use this feature.
The key term of the monitoring feature is an activity snapshot. It represents
the current state of the database, consisting of various information about
the database itself, active attachments and users, transactions, prepared and
running statements, etc. A snapshot is created the first time any of the
monitoring tables is being selected from in the given transaction and it's
preserved until the transaction ends, so multiple queries (e.g. master-detail
ones) will always return the consistent view of the data. In other words, the
monitoring tables always behave like a snapshot (aka consistency) transaction,
even if the host transaction has been started with another isolation level.
To refresh the snapshot, the current transaction should be finished and the
monitoring tables should be queried in the new transaction context. Creation
of a snapshot is usually quite fast operation, but some delay should be
expected under high load (especially in the Classic Server).
A valid database connection is required in order to retrieve the monitoring
data. The monitoring tables return information about the attached database
only. If multiple databases are being accessed on the server, each of them
has to be connected to and monitored separately.
System variables CURRENT_CONNECTION and CURRENT_TRANSACTION could be used
to select data about the current (for the caller) connection and transaction
2007-03-24 18:44:09 +01:00
respectively. These variables correspond to the ID columns of the appropriate
2006-12-14 10:14:19 +01:00
monitoring tables.
Security:
Complete database monitoring is available to SYSDBA and a database owner.
Regular users are restricted to the information about their own attachments
only (other attachments are invisible for them).
Author:
Dmitry Yemanov <dimitr at firebirdsql dot org>
Scope:
DSQL and PSQL
MON$DATABASE (connected database)
- MON$DATABASE_NAME (database pathname or alias)
- MON$PAGE_SIZE (page size)
- MON$ODS_MAJOR (major ODS version)
- MON$ODS_MINOR (minor ODS version)
- MON$OLDEST_TRANSACTION (OIT number)
- MON$OLDEST_ACTIVE (OAT number)
- MON$OLDEST_SNAPSHOT (OST number)
- MON$NEXT_TRANSACTION (next transaction number)
- MON$PAGE_BUFFERS (number of pages allocated in the cache)
- MON$SQL_DIALECT (SQL dialect of the database)
- MON$SHUTDOWN_MODE (current shutdown mode)
0: online
1: multi-user shutdown
2: single-user shutdown
3: full shutdown
- MON$SWEEP_INTERVAL (sweep interval)
- MON$READ_ONLY (read-only flag)
- MON$FORCED_WRITES (sync writes flag)
- MON$RESERVE_SPACE (reserve space flag)
- MON$CREATION_DATE (creation date/time)
- MON$PAGES (number of pages allocated on disk)
2013-04-13 07:58:54 +02:00
- MON$STAT_ID (statistics ID)
2007-09-14 17:47:03 +02:00
- MON$BACKUP_STATE (current physical backup state)
0: normal
1: stalled
2: merge
- MON$CRYPT_STATE (current encryption state)
0: not encrypted
1: encrypted
2019-09-06 10:53:28 +02:00
2: decrypt in progress
3: encrypt in progress
- MON$CRYPT_PAGE (number of page being encrypted / decrypted)
2014-01-13 08:58:30 +01:00
- MON$OWNER (database owner name)
2018-10-25 14:32:49 +02:00
- MON$SEC_DATABASE (security database)
- MON$GUID (database GUID)
- MON$FILE_ID (unique filesystem-level ID)
- MON$NEXT_ATTACHMENT (next attachment number)
- MON$NEXT_STATEMENT (next statement number)
- MON$REPLICA_MODE (Replica mode of the database)
2006-12-14 10:14:19 +01:00
MON$ATTACHMENTS (connected attachments)
- MON$ATTACHMENT_ID (attachment ID)
- MON$SERVER_PID (server process ID)
- MON$STATE (attachment state)
2006-12-14 10:14:19 +01:00
0: idle
1: active
- MON$ATTACHMENT_NAME (connection string)
- MON$USER (user name)
- MON$ROLE (role name)
- MON$REMOTE_PROTOCOL (remote protocol name)
- MON$REMOTE_ADDRESS (remote address)
- MON$REMOTE_PID (remote client process ID)
- MON$REMOTE_PROCESS (remote client process pathname)
2006-12-14 10:14:19 +01:00
- MON$CHARACTER_SET_ID (attachment character set)
- MON$TIMESTAMP (connection date/time)
- MON$GARBAGE_COLLECTION (garbage collection flag)
2007-09-14 17:47:03 +02:00
- MON$STAT_ID (statistics ID)
2013-04-13 07:58:54 +02:00
- MON$CLIENT_VERSION (version of the client library)
- MON$REMOTE_VERSION (version of the remote protocol)
- MON$REMOTE_HOST (remote host name)
- MON$REMOTE_OS_USER (remote OS user name)
2014-01-13 10:07:38 +01:00
- MON$AUTH_METHOD (authentication method used for connection)
- MON$SYSTEM_FLAG (system flag)
0: user attachment
1: system attachment
2018-10-25 14:32:49 +02:00
- MON$IDLE_TIMEOUT (connection-level idle timeout)
- MON$IDLE_TIMER (idle timer expiration time)
- MON$STATEMENT_TIMEOUT (statement timeout)
- MON$WIRE_COMPRESSED (wire compression enabled/disabled)
- MON$WIRE_ENCRYPTED (wire encryption enabled/disabled)
- MON$WIRE_CRYPT_PLUGIN (name of wire encryption plugin)
- MON$SESSION_TIMEZONE (time zone of attachment)
- MON$PARALLEL_WORKERS (number of parallel workes that could be used by attachment)
2006-12-14 10:14:19 +01:00
MON$TRANSACTIONS (started transactions)
- MON$TRANSACTION_ID (transaction ID)
- MON$ATTACHMENT_ID (attachment ID)
- MON$STATE (transaction state)
2006-12-14 10:14:19 +01:00
0: idle
1: active
- MON$TIMESTAMP (transaction start date/time)
- MON$TOP_TRANSACTION (top transaction)
- MON$OLDEST_TRANSACTION (local OIT number)
- MON$OLDEST_ACTIVE (local OAT number)
- MON$ISOLATION_MODE (isolation mode)
0: consistency
1: concurrency
2: read committed record version
3: read committed no record version
4: read committed read consistency
2006-12-14 10:14:19 +01:00
- MON$LOCK_TIMEOUT (lock timeout)
-1: infinite wait
0: no wait
N: timeout N
- MON$READ_ONLY (read-only flag)
- MON$AUTO_COMMIT (auto-commit flag)
- MON$AUTO_UNDO (auto-undo flag)
2007-09-14 17:47:03 +02:00
- MON$STAT_ID (statistics ID)
2006-12-14 10:14:19 +01:00
MON$STATEMENTS (prepared statements)
- MON$STATEMENT_ID (statement ID)
- MON$ATTACHMENT_ID (attachment ID)
- MON$TRANSACTION_ID (transaction ID)
- MON$STATE (statement state)
2006-12-14 10:14:19 +01:00
0: idle
1: active
- MON$TIMESTAMP (statement start date/time)
- MON$SQL_TEXT (statement text, if appropriate)
2007-09-14 17:47:03 +02:00
- MON$STAT_ID (statistics ID)
2018-10-25 14:32:49 +02:00
- MON$EXPLAINED_PLAN (explained query plan)
- MON$STATEMENT_TIMEOUT (statement timeout)
- MON$STATEMENT_TIMER (statement timer expiration time)
- MON$COMPILED_STATEMENT_ID (compiled statement ID)
2006-12-14 10:14:19 +01:00
2007-03-21 13:31:30 +01:00
MON$CALL_STACK (call stack of active PSQL requests)
2007-09-14 17:47:03 +02:00
- MON$CALL_ID (call ID)
2007-03-21 13:31:30 +01:00
- MON$STATEMENT_ID (top-level DSQL statement ID)
- MON$CALLER_ID (caller request ID)
- MON$OBJECT_NAME (PSQL object name)
- MON$OBJECT_TYPE (PSQL object type)
- MON$TIMESTAMP (request start date/time)
- MON$SOURCE_LINE (SQL source line number)
- MON$SOURCE_COLUMN (SQL source column number)
2007-09-14 17:47:03 +02:00
- MON$STAT_ID (statistics ID)
2013-04-13 07:58:54 +02:00
- MON$PACKAGE_NAME (PSQL object package name)
- MON$COMPILED_STATEMENT_ID (compiled statement ID)
2007-09-14 17:47:03 +02:00
MON$IO_STATS (I/O statistics)
- MON$STAT_ID (statistics ID)
2007-10-15 19:48:55 +02:00
- MON$STAT_GROUP (statistics group)
0: database
1: attachment
2: transaction
3: statement
4: call
2007-09-14 17:47:03 +02:00
- MON$PAGE_READS (number of page reads)
- MON$PAGE_WRITES (number of page writes)
- MON$PAGE_FETCHES (number of page fetches)
- MON$PAGE_MARKS (number of page marks)
MON$RECORD_STATS (record-level statistics)
- MON$STAT_ID (statistics ID)
2007-10-15 19:48:55 +02:00
- MON$STAT_GROUP (statistics group)
0: database
1: attachment
2: transaction
3: statement
4: call
2007-09-14 17:47:03 +02:00
- MON$RECORD_SEQ_READS (number of records read sequentially)
- MON$RECORD_IDX_READS (number of records read via an index)
- MON$RECORD_INSERTS (number of inserted records)
- MON$RECORD_UPDATES (number of updated records)
- MON$RECORD_DELETES (number of deleted records)
- MON$RECORD_BACKOUTS (number of backed out records)
- MON$RECORD_PURGES (number of purged records)
- MON$RECORD_EXPUNGES (number of expunged records)
2018-10-25 14:32:49 +02:00
- MON$RECORD_LOCKS (number of explicit record-level locks)
- MON$RECORD_WAITS (number of waits on conflicting records)
- MON$RECORD_CONFLICTS (number of record-level conflicts reported)
- MON$BACKVERSION_READS (number of backversions read while chasing version chains)
- MON$FRAGMENT_READS (number of fragments read while composing full records)
- MON$RECORD_RPT_READS (number of records read repeatedly, i.e. re-fetched after reading)
- MON$RECORD_IMGC (number of records affected by the intermediate garbage collection)
2007-03-21 13:31:30 +01:00
2008-06-10 18:35:56 +02:00
MON$MEMORY_USAGE (current memory usage)
- MON$STAT_ID (statistics ID)
- MON$STAT_GROUP (statistics group)
0: database
1: attachment
2: transaction
3: statement
4: call
- MON$MEMORY_USED (number of bytes currently in use)
- MON$MEMORY_ALLOCATED (number of bytes currently allocated at the OS level)
- MON$MAX_MEMORY_USED (maximum number of bytes used by this object)
- MON$MAX_MEMORY_ALLOCATED (maximum number of bytes allocated from OS by this object)
MON$CONTEXT_VARIABLES (known context variables)
- MON$ATTACHMENT_ID (attachment ID)
- MON$TRANSACTION_ID (transaction ID)
- MON$VARIABLE_NAME (name of context variable)
- MON$VARIABLE_VALUE (value of context variable)
2018-10-25 14:32:49 +02:00
MON$TABLE_STATS (per table record-level statistics)
- MON$STAT_ID (statistics ID)
- MON$STAT_GROUP (statistics group)
0: database
1: attachment
2: transaction
3: statement
4: call
- MON$TABLE_NAME (table name)
- MON$RECORD_STAT_ID (record-level statistics ID, refers to MON$RECORD_STATS)
2022-10-24 13:39:34 +02:00
MON$COMPILED_STATEMENTS (compiled statements)
- MON$COMPILED_STATEMENT_ID (compiled statement ID)
- MON$SQL_TEXT (statement text, if appropriate)
- MON$EXPLAINED_PLAN (explained query plan)
- MON$OBJECT_NAME (PSQL object name)
- MON$OBJECT_TYPE (PSQL object type)
- MON$PACKAGE_NAME (PSQL object package name)
- MON$STAT_ID (statistics ID)
2006-12-14 10:14:19 +01:00
Notes:
1) Textual descriptions of all "state" and "mode" values can be found
in the system table RDB$TYPES
2) For table MON$ATTACHMENTS:
- columns MON$REMOTE_PID and MON$REMOTE_PROCESS contains non-NULL values
only if the client library has version 2.1 or higher
- column MON$REMOTE_PROCESS can contain a non-pathname value
if an application has specified a custom process name via DPB
2006-12-14 10:14:19 +01:00
3) For table MON$STATEMENTS:
- column MON$SQL_TEXT contains NULL for GDML statements
- columns MON$TRANSACTION_ID and MON$TIMESTAMP contain valid values
for active statements only
2007-03-21 13:31:30 +01:00
4) For table MON$CALL_STACK:
- column MON$STATEMENT_ID groups call stacks by the top-level DSQL statement
that initiated the call chain. This ID represents an active statement
record in the table MON$STATEMENTS.
- columns MON$SOURCE_LINE and MON$SOURCE_COLUMN contain line/column information
related to the PSQL statement being currently executed
2008-06-10 18:35:56 +02:00
5) For table MON$MEMORY_USAGE:
- the "used" values represent high-level memory allocations, i.e. the ones
performed by the engine from its pools. They are useful to investigate unexpected
memory consumptions and find the "guilty" objects (attachments, procedures, etc),
as well as trace memory leaks.
- the "allocated" values represent low-level memory allocations, i.e. the ones
performed by the Firebird memory manager. This means bytes really allocated from OS,
thus allowing to monitor the physical memory consumption. Please note that not every
record has these columns populated with non-zero values. Small allocations don't go
to the OS level, they're redirected to the database memory pool instead. So usually
only MON$DATABASE and memory-bound objects point to non-zero "allocated" values.
- the counter set linked to a record in MON$DATABASE reports the memory shared among
all attachments. In Classic and SuperClassic, these counters are zero meaning no
shared cache in these architectures.
2008-06-10 18:35:56 +02:00
6) For table MON$CONTEXT_VARIABLES:
- column MON$ATTACHMENT_ID contains a valid ID only for session-level context variables.
Transaction-level ones have this field set to NULL.
- column MON$TRANSACTION_ID contains a valid ID only for transaction-level context variables.
Session-level ones have this field set to NULL.
2006-12-14 10:14:19 +01:00
Example(s):
2008-06-10 18:35:56 +02:00
1) Retrieve IDs of all CS processes loading CPU at the moment:
2006-12-14 10:14:19 +01:00
SELECT MON$SERVER_PID
FROM MON$ATTACHMENTS
WHERE MON$ATTACHMENT_ID <> CURRENT_CONNECTION
AND MON$STATE = 1
2006-12-14 10:14:19 +01:00
2008-06-10 18:35:56 +02:00
2) Retrieve information about client applications:
2006-12-14 10:14:19 +01:00
SELECT MON$USER, MON$REMOTE_ADDRESS, MON$REMOTE_PID, MON$TIMESTAMP
FROM MON$ATTACHMENTS
WHERE MON$ATTACHMENT_ID <> CURRENT_CONNECTION
2008-06-10 18:35:56 +02:00
3) Get isolation level of the current transaction:
SELECT MON$ISOLATION_MODE
2006-12-14 10:14:19 +01:00
FROM MON$TRANSACTIONS
WHERE MON$TRANSACTION_ID = CURRENT_TRANSACTION
2008-06-10 18:35:56 +02:00
4) Get statements that are currently active:
2006-12-14 10:14:19 +01:00
SELECT ATT.MON$USER, ATT.MON$REMOTE_ADDRESS, STMT.MON$SQL_TEXT, STMT.MON$TIMESTAMP
FROM MON$ATTACHMENTS ATT
JOIN MON$STATEMENTS STMT ON ATT.MON$ATTACHMENT_ID = STMT.MON$ATTACHMENT_ID
WHERE ATT.MON$ATTACHMENT_ID <> CURRENT_CONNECTION
AND STMT.MON$STATE = 1
2007-03-21 13:31:30 +01:00
2008-06-10 18:35:56 +02:00
5) Retrieve call stacks for all connections:
2007-03-21 13:31:30 +01:00
WITH RECURSIVE
HEAD AS
(
SELECT CALL.MON$STATEMENT_ID, CALL.MON$CALL_ID, CALL.MON$OBJECT_NAME, CALL.MON$OBJECT_TYPE
FROM MON$CALL_STACK CALL
WHERE CALL.MON$CALLER_ID IS NULL
UNION ALL
SELECT CALL.MON$STATEMENT_ID, CALL.MON$CALL_ID, CALL.MON$OBJECT_NAME, CALL.MON$OBJECT_TYPE
FROM MON$CALL_STACK CALL
JOIN HEAD ON CALL.MON$CALLER_ID = HEAD.MON$CALL_ID
)
SELECT MON$ATTACHMENT_ID, MON$OBJECT_NAME, MON$OBJECT_TYPE
FROM HEAD
JOIN MON$STATEMENTS STMT ON STMT.MON$STATEMENT_ID = HEAD.MON$STATEMENT_ID
WHERE STMT.MON$ATTACHMENT_ID <> CURRENT_CONNECTION
2008-06-10 18:35:56 +02:00
6) Enumerate all session-level context variables for the current connection:
SELECT VAR.MON$VARIABLE_NAME, VAR.MON$VARIABLE_VALUE
2008-06-10 18:46:55 +02:00
FROM MON$CONTEXT_VARIABLES VAR
2008-06-10 18:35:56 +02:00
WHERE VAR.MON$ATTACHMENT_ID = CURRENT_CONNECTION
2008-06-12 09:40:42 +02:00
7) Report top 10 statements ranked by their memory usage:
2008-06-10 18:35:56 +02:00
SELECT FIRST 10 STMT.MON$ATTACHMENT_ID, STMT.MON$SQL_TEXT, MEM.MON$MEMORY_USED
FROM MON$MEMORY_USAGE MEM
NATURAL JOIN MON$STATEMENTS STMT
ORDER BY MEM.MON$MEMORY_USED DESC
--------------------------------------
Modifications of the monitoring tables
--------------------------------------
Monitoring tables also allow some special administration activities, in particular:
cancelling running statements and terminating client sessions. This is done via deletes
2008-06-12 09:40:42 +02:00
from tables MON$STATEMENTS and MON$ATTACHMENTS respectively. Deletes from other tables,
2008-06-10 18:35:56 +02:00
as well as inserts/updates issued against them, are prohibited.
Notes:
1) If there are no statements currently running by the client, then the cancellation
attempt becomes a void operation. Once cancelled, the execute/fetch API call returns
the isc_cancelled error code. Any subsequent operations are allowed.
2) If there are active transactions in the connection being terminated, their activity
is immediately cancelled and they're rolled back. Once terminated, the client session
receives the isc_att_shutdown error code. Subsequent attempts to use this connection
handle will cause network read/write errors.
3) System attachment can not be cancelled, so engine silently skip system attachments
affected by DELETE FROM MON$ATTACHMENTS statements
2008-06-10 18:35:56 +02:00
Example(s):
1) Cancel current activity of connection #32:
DELETE FROM MON$STATEMENTS WHERE MON$ATTACHMENT_ID = 32
2) Disconnect everybody but ourselves:
DELETE FROM MON$ATTACHMENTS WHERE MON$ATTACHMENT_ID <> CURRENT_CONNECTION
2009-07-20 22:47:53 +02:00
--------------
Under the hood
--------------
The monitoring implementation is built around two corner stones: shared memory and
notifications.
All server processes share some region of memory where the current activity information
is stored. This information consists of multiple variable-length items describing the
various activity details. All items that belong to the same process are grouped into a
single cluster, so that they can be processed as a whole.
The monitoring information is not populated/collected in real time. Instead, server
processes write their data into the shared memory only when explicitly asked to. When doing
so, the old clusters are being replaced with newer ones. When the shared memory region is
being read, the reading process scans all the clusters and performs the garbage collection:
clusters that belong to dead processes are removed and the shared memory space is compacted.
Every server process has a flag that indicates its ability to react to someone's monitoring
request as soon as it arrives. When some user connection runs a query against some
monitoring table, the worker process of that connection sends a broadcast notification to
other processes requesting an up-to-date information. Those processes react to this request
by updating their clusters inside the shared memory region and clearing their "ready" flags.
Once the every notified process has finished, the requesting one reads the shared memory
region, filters the necessary tags based on its user permissions, transforms the internal
representation into records and fields and populates the in-memory monitoring tables cache.
Processes that were idle since the last monitoring exchange have their "ready" flag clear,
thus indicating that they have nothing to update in the shared memory. This way they're
excluded from the next roundtrip. As soon as something significant changed inside the
process, the flag is set and this process starts responding to the monitoring requests
again.
The requester holds an exclusive lock while coordinating the write/read operations. This lock
affects the currently active user connections as well as the connections being established.
Multiple simultaneous monitoring requests are serialized.
----------------------------
Limitations and known issues
----------------------------
2009-07-21 10:59:16 +02:00
1) In a heavily loaded system running Classic, monitoring requests may take noticeable time
2009-07-20 22:47:53 +02:00
to execute. In the meantime, other activity (both running statements and new connection
attempts) may be blocked until the monitoring request completes.
Improved since FB v2.1.2.
2) Monitoring requests may sometimes fail due to the out-of-memory condition, or cause other
worker processes to swap. This is caused by the fact that the every record in MON$STATEMENTS
has a blob MON$SQL_TEXT which is created for the duration of the monitoring transaction.
Prior to FB v2.5, every blob occupied <page size> bytes of memory even if its contents is
in fact smaller. So, with a huge number of prepared statements in the system, it becomes
possible to get this failure.
Another possible reason could be the temporary (very short in practice) growth of the
transaction pool which caches the monitoring data while merging the clusters into a single
fragment.
Improved since FB v2.5.0.