Performance Schema setup_actors Table

The setup_actors table contains information for determining whether monitoring should be enabled for new client connection threads.

The default size is 100 rows, which can be changed by modifying theperformance_schema_setup_actors_size system variable at server startup.

If a row in the table matches a new foreground thread's client and host, the matching INSTRUMENTED column in thethreads table is set to either YES orNO, which allows selective application of instrumenting by host, by user, or combination thereof.

Column
Description

Column

Description

HOST

Host name, either a literal, or the % wildcard representing any host.

USER

User name, either a literal or the % wildcard representing any name.

ROLE

Unused

Initially, any user and host is matched:

SELECT * FROM performance_schema.setup_actors;
+------+------+------+
| HOST | USER | ROLE |
+------+------+------+
| %    | %    | %    |
+------+------+------+

This page is licensed: CC BY-SA / Gnu FDL

Last updated

Was this helpful?