Parameter |
Choices/Defaults |
Comments |
active
boolean
|
|
A rule with active set to False will be tracked in the database, but will be never loaded in the in-memory data structures.
|
apply
boolean
|
|
Used in combination with flagIN and flagOUT to create chains of rules. Setting apply to True signifies the last rule to be applied.
|
cache_ttl
-
|
|
The number of milliseconds for which to cache the result of the query. Note in ProxySQL 1.1 cache_ttl was in seconds.
|
client_addr
-
|
|
Match traffic from a specific source.
|
comment
-
|
|
Free form text field, usable for a descriptive comment of the query rule.
|
config_file
path
|
Default:
""
|
Specify a config file from which login_user and login_password are to be read.
|
delay
-
|
|
Number of milliseconds to delay the execution of the query. This is essentially a throttling mechanism and QoS, and allows a way to give priority to queries over others. This value is added to the mysql-default_query_delay global variable that applies to all queries.
|
destination_hostgroup
-
|
|
Route matched queries to this hostgroup. This happens unless there is a started transaction and the logged in user has transaction_persistent set to True (see proxysql_mysql_users).
|
digest
-
|
|
Match queries with a specific digest, as returned by stats_mysql_query_digest.digest.
|
error_msg
-
|
|
Query will be blocked, and the specified error_msg will be returned to the client.
|
flagIN
-
|
|
Used in combination with flagOUT and apply to create chains of rules.
|
flagOUT
-
|
|
Used in combination with flagIN and apply to create chains of rules. When set, flagOUT signifies the flagIN to be used in the next chain of rules.
|
force_delete
boolean
|
|
By default we avoid deleting more than one schedule in a single batch, however if you need this behaviour and you're not concerned about the schedules deleted, you can set force_delete to True .
|
load_to_runtime
boolean
|
|
Dynamically load config to runtime memory.
|
log
boolean
|
|
Query will be logged.
|
login_host
string
|
Default:
"127.0.0.1"
|
The host used to connect to ProxySQL admin interface.
|
login_password
string
|
|
The password used to authenticate to ProxySQL admin interface.
|
login_port
integer
|
Default:
6032
|
The port used to connect to ProxySQL admin interface.
|
login_user
string
|
|
The username used to authenticate to ProxySQL admin interface.
|
match_digest
-
|
|
Regular expression that matches the query digest. The dialect of regular expressions used is that of re2 - https://github.com/google/re2
|
match_pattern
-
|
|
Regular expression that matches the query text. The dialect of regular expressions used is that of re2 - https://github.com/google/re2
|
mirror_flagOUT
-
|
|
Enables query mirroring. If set mirror_flagOUT can be used to evaluates the mirrored query against the specified chain of rules.
|
mirror_hostgroup
-
|
|
Enables query mirroring. If set mirror_hostgroup can be used to mirror queries to the same or different hostgroup.
|
negate_match_pattern
boolean
|
|
If negate_match_pattern is set to True , only queries not matching the query text will be considered as a match. This acts as a NOT operator in front of the regular expression matching against match_pattern.
|
proxy_addr
-
|
|
Match incoming traffic on a specific local IP.
|
proxy_port
-
|
|
Match incoming traffic on a specific local port.
|
replace_pattern
-
|
|
This is the pattern with which to replace the matched pattern. Note that this is optional, and when omitted, the query processor will only cache, route, or set other parameters without rewriting.
|
retries
-
|
|
The maximum number of times a query needs to be re-executed in case of detected failure during the execution of the query. If retries is not specified, the global variable mysql-query_retries_on_failure applies.
|
rule_id
-
|
|
The unique id of the rule. Rules are processed in rule_id order.
|
save_to_disk
boolean
|
|
Save config to sqlite db on disk to persist the configuration.
|
schemaname
-
|
|
Filtering criteria matching schemaname. If schemaname is non-NULL, a query will match only if the connection uses schemaname as its default schema.
|
state
-
|
Choices:
present ←
- absent
|
When present - adds the rule, when absent - removes the rule.
|
timeout
-
|
|
The maximum timeout in milliseconds with which the matched or rewritten query should be executed. If a query run for longer than the specific threshold, the query is automatically killed. If timeout is not specified, the global variable mysql-default_query_timeout applies.
|
username
-
|
|
Filtering criteria matching username. If username is non-NULL, a query will match only if the connection is made with the correct username.
|