- Rule Engine
- Publish message
- Event trigger
- Minimum rule
- Examples of typical application scenarios for rule engine
- Migration Guide
- Rule engine composition
- SQL statement
Rule Engine
EMQ X Broker Rule Engine (Hereinafter referred to as rule engine) is used to configure EMQ X Broker message flow and device event processing and response rules. The rule engine not only provides a clear and flexible “configuration-style” business integration solution, simplifies the business development process, improves ease of use for user, and reduces the coupling between the business system and EMQ X Broker, but also provides a better infrastructure for the private function customization of EMQ X broker.
EMQ X Broker will trigger the rule engine when publishing message or triggering event, and the rules that meet the triggering conditions will execute their own SQL statements to filter and process the context information of messages and events.
TIP
Applicable version:EMQ X Broker v3.1.0+
Compatibility Tip: EMQ X Broker v4.0 makes major adjustments to the SQL syntax of the rule engine. For v3.x upgrade users, please refer to Migration Guide for compatibility.
Publish message
The rule engine can store the message processing results of a specific topic to the database with the response action, send it to the HTTP server, forward it to the message queue of Kafka or RabbitMQ, and republish to a new topic or even another Broker cluster. Each rule can be configured with multiple response actions.
Select the message published to the t/# topic and filter out all fields:
SELECT * FROM "t/#"
Select the message posted to the t/a topic, and filter out the “x” field from the message content in JSON format:
SELECT payload.x as x FROM "t/a"
Event trigger
The rule engine uses a virtual topic beginning with $events/ to process EMQ X Broker built-in events. The built-in events provide finer message control and client action processing capabilities, which can be used in the business of QoS 1 QoS 2 messages arrival recording, device online and offline recording.
Select the client connection event, filter the device whose Username is emqx
and obtain the connection information:
SELECT clientid, connected_at FROM "$events/client_connected" WHERE username = 'emqx'
For rule engine data, SQL statement format and event topic list, please refer toSQL manual for detailed tutorials.
Minimum rule
The rule describes the three configurations of where data comes from , how to filter and process data, and where to processed results goes, which means an available rule contains three elements:
- Triggered event: The rule is triggered by an event. When triggered, the event inputs the context information (data source) of the event into the rule, and the event type is specified through the FROM clause of SQL;
- Processing rules (SQL): Use SELECT clause and WHERE clause and built-in processing functions to filter and process data from context information;
- Response action: If there is a processing result output, the rule will perform the corresponding action, such as persisting to the database, republishing the processed message, forwarding the message to the message queue, etc. A rule can configure multiple response actions.
The following figure is a simple rule, which is used to process the data at the time of message publishing, filter out the msg
field, messages topic
, qos
of all topic messages, and send them to the Web Server and /uplink topics:
Examples of typical application scenarios for rule engine
- Action listening: In the development of intelligent door lock for smart home, the function of the door lock will be abnormal because of offline resulting by the network or power failure, man-made damage and other reasons. Through using rule engine configuration to monitor offline events, it can push the fault information to the application service and realize the ability of first time fault detection in the access layer.
- Data filtering: Truck fleet management of vehicle network. Vehicle sensors collect and report a large amount of operational data. The application platform only focuses on data with a vehicle speed greater than 40 km/h. In this scenario, the rule engine can be used to conditionally filter messages to the service, and data that satisfies the condition can be written to the business message queue .
- Message routing: In the intelligent billing application, the terminal device distinguishes the service type by different topics. The message of billing service can be connected to the billing message queue by configuring the rule engine, and the non-billing information can be connected to other message queues to realize the routing configuration of business messages.
- Message encoding and decoding: In the application scenarios such as public protocol/proprietary TCP protocol access and industrial control, the encoding and decoding of binary/special format message body can be done through the local processing function of the rule engine (which can be customized and developed on EMQ X). Relevant messages can also be routed through the rule engine to external computing resources such as function computing for processing (processing logic can be developed by users), and the messages can be converted into JSON format that is easy for business processing, which simplifies the difficulty of project integration and improves the ability of rapid development and delivery of applications.
Migration Guide
In version 4.0, the SQL syntax of the rule engine is easier to use. In version 3. X, the event name needs to be specified after the FROM clause. After 4.0 version, we introduce the concept of event topic . By default, the message publish event no longer needs to be specified.
## 3.x
## Event name needs to be specified for processing
SELECT * FROM "message.publish" WHERE topic =~ 't/#'
## 4.0 and later
## The message.publish event is processed by default, and MQTT topics are filtered directly after FROM
## The above SQL is equivalent to:
SELECT * FROM 't/#'
## Other events are filtered by event topics
SELECT * FROM "$events/message_acked" where topic =~ 't/#'
SELECT * FROM "$events/client_connected"
TIP
The old version of SQL syntax conversion function is provided in Dashboard to complete SQL upgrade and migration.
Rule engine composition
EMQ X Broker’s rule engine can be used to flexibly process messages and events. By using the rule engine, it can easily achieve such function as converting the message into a specified format, and then stored in a database table, or sent to the message queue.
The concepts related to the EMQ X Broker rule engine include: rules, actions, resources, and resource-types.
The relationship between rules, actions and resources:
Rule: {
SQL statement
Action list: [
{
action 1,
Action parameters,
Bind resources: {
Resource configuration
}
},
{
action 2,
Action parameters,
Bind resources: {
Resource configuration
}
}
]
}
- Rule: Rule consists of SQL statements and action list. The action list contains one or more actions and their parameters.
- SQL statements are used to filter or transform data in messages.
- The action is the task performed after the SQL statement is matched, which defines an operation for data. Actions can be bound to resources or unbound. For example, the “inspect” action does not require binding resources, which simply prints the data content and action parameters. The “data_to_webserver” action needs to bind a web_hook type resource, and a URL is configured in this resource.
- Resource: A resource is an object instantiated through a resource type as a template, and saves the configuration related to the resource (such as database connection address and port, user name and password, etc.).
- Resource Type: Resource type is a static definition of a resource and describes the configuration items required for this type of resource.
TIP
Actions and resource types are provided by emqx or plugin code and cannot be created dynamically through API and CLI.
SQL statement
SQL syntax
FROM, SELECT, and WHERE clauses:
The basic format of the SQL statement of the rule engine is:
SELECT <fields> FROM <topic> [WHERE <any>]
- The
FROM
clause mounts rules to a topic - The
SELECT
clause is used to select fields in the output - The
WHERE
clause is used to filter messages based on conditions
FOREACH, DO and INCASE clauses:
If you want to perform some operations and actions for each element of an array data, you need to use the FOREACH-DO-INCASE
syntax. The basic format is:
FOREACH <Field name> [DO <Condition>] [INCASE <Condition>] FROM <Topic> [WHERE <Condition>]
- The
FOREACH
clause is used to select the field that needs to perform foreach operation. Note that the selected field must be an array type - The
DO
clause is used to transform each element in the array selected by FOREACH and select the field of interest - The
INCASE
clause is used to apply conditional filtering to a field selected by DO
The DO and INCASE clauses are optional. DO is equivalent to the SELECT clause for objects in the current loop, while INCASE is equivalent to the WHERE statement for objects in the current loop.
Events and event topics
The SQL statements of the rule engine can handle both messages (message publishing) and events (client online and offline, client subscription, etc.). For messages, the FROM clause is directly followed by the topic name; for events, the FROM clause is followed by the event topic.
The topic of the event message starts with "$events/"
, such as "$events/client_connected",
"$events/session_subscribed"
. If you want emqx to publish the event message, you can configure it in the emqx_rule_engine.conf
file.
For all supported events and available fields, please see rule event.
SQL statement example:
Basic syntax examples
Extract all fields from the messages with a topic of “t/a”:
SELECT * FROM "t/a"
Extract all fields from the messages with a topic of “t/a” or “t/b”:
SELECT * FROM "t/a","t/b"
Extract all fields from the message with a topic that can match ‘t/#’.
SELECT * FROM "t/#"
Extract the qos, username, and clientid fields from the message with a topic that can match ‘t/#’ :
SELECT qos, username, clientid FROM "t/#"
Extract the username field from any topic message with the filter criteria of username = ‘Steven’:
SELECT username FROM "#" WHERE username='Steven'
Extract the x field from the payload of message with any topic and create the alias x for use in the WHERE clause. The WHERE clause is restricted as x = 1. Note that the payload must be in JSON format. Example: This SQL statement can match the payload
{"x": 1}
, but can not match to the payload{"x": 2}
:SELECT payload as p FROM "#" WHERE p.x = 1
Similar to the SQL statement above, but nested extract the data in the payload, this SQL statement can match the payload{“x”: {“y”: 1}}`:
SELECT payload as a FROM "#" WHERE a.x.y = 1
Try to connect when clientid = ‘c1’, extract its source IP address and port number:
SELECT peername as ip_port FROM "$events/client_connected" WHERE clientid = 'c1'
Filter all clientids that subscribe to the ‘t/#’ topic and have a subscription level of QoS1 :
SELECT clientid FROM "$events/session_subscribed" WHERE topic = 't/#' and qos = 1
Filter all clientids that subscribe to the ‘t/#’ topic and subscription level is QoS1. Note that the strict equality operator ‘=~’ is used here, so it does not match subscription requests with the topic ‘t’ or ‘t/+/a’ :
SELECT clientid FROM "$events/session_subscribed" WHERE topic =~ 't/#' and qos = 1
TIP
- Topic after the FROM clause need to be enclosed in double quotes
""
. - The WHERE clause is followed by the filter condition. If a string is used, it needs to be enclosed in single quotes
''
. If there are multiple topics in the FROM clause, they need to be separated by commas
","
. For example,SELECT * FROM "t/1", "t/2".
You can use the
"."
Symbol to nest select payloads- :::
Examples of FOREACH-DO-INCASE
Suppose there is a message with ClientID of c_steve
and topic of t/1
. The message body is in JSON format, and the sensors field is an array containing multiple Objects:
{
"date": "2020-04-24",
"sensors": [
{"name": "a", "idx":0},
{"name": "b", "idx":1},
{"name": "c", "idx":2}
]
}
Example 1: It is required that each object in sensors is re-published as a data input to the topic of sensors/${idx}
with the content of ${name}
. That means the final rule engine will issue 3 messages:
- Topic: sensors/0 Content: a
- Topic: sensors/1 Content: b
- Topic: sensors/2 Content: c
To complete this rule, we need to configure the following actions:
- Action type: message republish
- Target topic: sensors/$ {idx}
- Target QoS: 0
- Message content template: $ {name}
And the following SQL statement:
FOREACH
payload.sensors
FROM "t/#"
**Example analysis: **
In this SQL, the FOREACH clause specifies the array sensors that need to be traversed, then the selection result is:
[
{
"name": "a",
"idx": 0
},
{
"name": "b",
"idx": 1
},
{
"name": "c",
"idx": 2
}
]
The FOREACH statement will perform a “message republish” action for each object in the result array, so the republish action will be performed 3 times.
Example 2: It is required that each object in sensors with ids value greater than or equal to 1 is re-published as a data input to the topic of sensors/${idx}
with the content of clientid=${clientid},name=${name},date=${date}
. That means the final rule engine will issue 2 messages:
- Topic: sensors/1 Content: clientid=c_steve,name=b,date=2020-04-24
- Topic: sensors/2 Content: clientid=c_steve,name=c,date=2020-04-24
To complete this rule, we need to configure the following actions:
- Action type: message republish
- Target topic: sensors/$ {idx}
- Target QoS: 0
- Message content template: clientid=${clientid},name=${name},date=${date}
And the following SQL statement:
FOREACH
payload.sensors
DO
clientid,
item.name as name,
item.idx as idx
INCASE
item.idx >= 1
FROM "t/#"
**Example analysis: **
In this SQL, the FOREACH clause specifies the array sensors
that need to be traversed; the DO clause selects the fields required for each operation, and we select the outer clientid field here, and the two fields of name
and idx
of the current sensor object. Note that item represents the object of this loop in the sensors array. The INCASE clause is a filtering condition for the fields in the DO statement, only if idx> = 1 meets the condition. So the selection result of SQL is:
[
{
"name": "b",
"idx": 1,
"clientid": "c_emqx"
},
{
"name": "c",
"idx": 2,
"clientid": "c_emqx"
}
]
The FOREACH statement will perform a “message republish” action for each object in the result array, so the republish action will be performed twice.
In DO and INCASE statements, you can use item
to access the object of the current loop, or you can customize a variable name by using the as
syntax in FOREACH. So the SQL statement in this example can be written as:
FOREACH
payload.sensors as s
DO
clientid,
s.name as name,
s.idx as idx
INCASE
s.idx >= 1
FROM "t/#"
Example 3: Based on Example 2, remove the c_
prefix of c_steve
in the clientid field
Various SQL functions can be called in the FOREACH and DO statements. If you want to change c_steve
into steve
, you can change the SQL in Example 2 into:
FOREACH
payload.sensors as s
DO
nth(2, tokens(clientid,'_')) as clientid,
s.name as name,
s.idx as idx
INCASE
s.idx >= 1
FROM "t/#"
In addition, multiple expressions can also be placed in the FOREACH clause, as long as the last expression specifies the array to traverse. For example, we can change the message body, and there is one more layer of Object outside the sensors:
{
"date": "2020-04-24",
"data": {
"sensors": [
{"name": "a", "idx":0},
{"name": "b", "idx":1},
{"name": "c", "idx":2}
]
}
}
Then FOREACH can select data before deciding which array to be traversed:
FOREACH
payload.data as data
data.sensors as s
...
CASE-WHEN Syntax example
Example 1: Limit the value of the x field in the message to the range of 0 ~ 7.
SELECT
CASE WHEN payload.x < 0 THEN 0
WHEN payload.x > 7 THEN 7
ELSE payload.x
END as x
FROM "t/#"
Suppose the message is:
{"x": 8}
Then the above SQL output is:
{"x": 7}
Event topic available for FROM clause
Event topic name | Explanation |
---|---|
$events/message_delivered | message delivery |
$events/message_acked | message acknowledged |
$events/message_dropped | Message dropped |
$events/client_connected | Connection complete |
$events/client_disconnected | Disconnect |
$events/session_subscribed | Subscribe |
$events/session_unsubscribed | Unsubcribe |
Available fields in SELECT and WHERE clauses
The fields available in the SELECT and WHERE clauses are related to the type of event. Among them, clientid
, username
and event
are common fields that is contained by each type of event.
Message Publish
event | Event type, fixed at “message.publish” |
---|---|
id | MQTT message ID |
clientid | Client ID |
username | username |
payload | MQTT payload |
peerhost | client IPAddress |
topic | MQTT topic |
qos | Enumeration of message QoS 0,1,2 |
flags | flags |
headers | Additional data related to proces within the MQTT message |
timestamp | timestamp (ms) |
publish_received_at | Time when PUBLISH message reaches Broker (ms) |
node | Node name of the trigger event |
$events/message_delivered
event | Event type, fixed at “message.delivered” |
---|---|
id | MQTT message ID |
from_clientid | from_clientid |
from_username | from_username |
clientid | clientid |
username | Current MQTT username |
payload | MQTT payload |
peerhost | client IPAddress |
topic | MQTT topic |
qos | Enumeration of message QoS 0,1,2 |
flags | flags |
timestamp | Event trigger time(millisecond) |
publish_received_at | Time when PUBLISH message reaches Broker (ms) |
node | Node name of the trigger event |
$events/message_acked
event | Event type, fixed at “message.acked” |
---|---|
id | MQTT message id |
from_clientid | from_clientid |
from_username | from_username |
clientid | clientid |
username | Current MQTT username |
payload | MQTT payload |
peerhost | client IPAddress |
topic | MQTT topic |
qos | Enumeration of message QoS 0,1,2 |
flags | flags |
timestamp | Event trigger time(millisecond) |
publish_received_at | Time when PUBLISH message reaches Broker (ms) |
node | Node name of the trigger event |
$events/message_dropped
event | Event type, fixed at “message.dropped” |
---|---|
id | MQTT message id |
reason | reason |
clientid | clientid |
username | Current MQTT username |
payload | MQTT payload |
peerhost | Client IPAddress |
topic | MQTT topic |
qos | Enumeration of message QoS 0,1,2 |
flags | flags |
timestamp | Event trigger time(millisecond) |
publish_received_at | Time when PUBLISH message reaches Broker (ms) |
node | Node name of the trigger event |
$events/client_connected
event | Event type, fixed at “client.connected” |
---|---|
clientid | clientid |
username | Current MQTT username |
mountpoint | Mountpoint for bridging messages |
peername | IPAddress and Port of terminal |
sockname | IPAddress and Port listened by emqx |
proto_name | protocol name |
proto_ver | protocol version |
keepalive | MQTT keepalive interval |
clean_start | MQTT clean_start |
expiry_interval | MQTT Session Expiration time |
is_bridge | whether it is MQTT bridge connection |
connected_at | Terminal connection completion time (s) |
timestamp | Event trigger time(millisecond) |
node | Node name of the trigger event |
$events/client_disconnected
event | Event type, fixed at “client.disconnected” |
---|---|
reason | Reason for disconnection of terminal |
clientid | client ID |
username | Current MQTT username |
peername | IPAddress and Port of terminal |
sockname | IPAddress and Port listened by emqx |
disconnected_at | Terminal disconnection completion time (s) |
timestamp | Event trigger time(millisecond) |
node | Node name of the trigger event |
$events/session_subscribed
event | Event type, fixed at “session.subscribed” |
---|---|
clientid | Client ID |
username | Current MQTT username |
peerhost | client IPAddress |
topic | MQTT topic |
qos | Enumeration of message QoS 0,1,2 |
timestamp | Event trigger time(millisecond) |
node | Node name of the trigger event |
$events/session_unsubscribed
event | Event type, fixed at “session.unsubscribed” |
---|---|
clientid | Client ID |
username | Current MQTT username |
peerhost | client IPAddress |
topic | MQTT topic |
qos | Enumeration of message QoS 0,1,2 |
timestamp | Event trigger time(millisecond) |
node | Node name of the trigger event |
SQL Keywords and symbols
SELECT - FROM - WHERE clause
The SELECT statement is used to determine the fields in the final output. such as:
The following SQL output will have only two fields of “a” and “b”:
SELECT a, b FROM "t/#"
The WHERE statement is used to conditionally filter the fields available in this event or the fields defined in the SELECT statement. such as:
# Select the message from the terminal whose username is 'abc', and the output will be all available fields:
SELECT * FROM "#" WHERE username = 'abc'
## Select the message sent from the terminal whose clientid is 'abc', and the output will have only one field of cid.
## Note that the cid variable is defined in the SELECT statement, so it can be used in the WHERE statement:
SELECT clientid as cid FROM "#" WHERE cid = 'abc'
## Select the message sent from the terminal whose username is 'abc', and the output will have only one field of cid.
## Note that although only one field of cid is selected in the SELECT statement, all available fields in the message publishing event (such as clientid, username, etc.) can still be used in the WHERE statement:
SELECT clientid as cid FROM "#" WHERE username = 'abc'
## But the following SQL statement will not work, because the variable xyz is neither an available field in the message publishing event nor defined in the SELECT statement:
SELECT clientid as cid FROM "#" WHERE xyz = 'abc'
The FROM statement is used to select the source of the event. If the message is published, fill in the topic of the message, if it is an event, fill in the corresponding event topic.
Operational symbol
Function | Purpose | Returned value | |
---|---|---|---|
+ | addition, or string concatenation | Sum, or concatenated string | |
- | Subtraction | Difference | |
* | multiplication | product | |
/ | division | Quotient | |
div | Integer division | Integer quotient | |
mod | modulus | module | |
= | Compare whether the two are completely equal. It can be used to compare variables and topics | true/false | |
=~ | Compare whether the topic can match the topic filter. It can only be used for topic matching | true/false |
Functions available in SQL statements
Mathematical functions
function name | Purpose | parameter | Returned value |
abs | Absolute value |
| absolute value |
cos | Cosine |
| Cosine value |
cosh | Hyperbolic cosine |
| Hyperbolic cosine value |
acos | Inverse cosine |
| Inverse cosine value |
acosh | Inverse hyperbolic cosine |
| Inverse hyperbolic cosine value |
sin | Sine |
| Sine value |
sinh | Hyperbolic sine |
| Hyperbolic sine value |
asin | Arcsine |
| Arcsine value |
asinh | inverse hyperbolic sine |
| inverse hyperbolic sine value |
tan | tangent |
| tangent value |
tanh | Hyperbolic tangent |
| Hyperbolic tangent value |
atan | Arc tangent |
| Arc tangent value |
atanh | Inverse hyperbolic tangent |
| Inverse hyperbolic tangent value |
ceil | Round up |
| Integer value |
floor | Round down |
| Integer value |
round | rounding |
| Integer value |
exp | Exponentiation |
| X power of e |
power | Exponential operation |
| Y power of X |
sqrt | Square root operation |
| Square root |
fmod | Floating point modulus function |
| module |
log | Logarithm to e |
| value |
log10 | Logarithm to 10 |
| value |
log2 | Logarithm to 2 |
| value |
Data type judgment function
Function name | Purpose | parameter | Returned value |
is_null | Judge if the variable is null |
| Boolean data.if it is empty (undefined), return true, otherwise return false |
is_not_null | Judge if the variable is not null |
| Boolean data.if it is empty (undefined), return false, otherwise return true |
is_str | Judge whether the variable is String type |
| Boolean data. |
is_bool | Judge if the variable is Boolean type |
| Boolean data. |
is_int | Judge whether the variable is Integer type |
| Boolean data. |
is_float | Judge whether the variable is Float type |
| Boolean data. |
is_num | Judge whether the variable is a numeric type, including Integer and Float types |
| Boolean data. |
is_map | Judge whether the variable is Map type |
| Boolean data. |
is_array | Judge whether the variable is Array type |
| Boolean data. |
Data type conversion function
function name | purpose | parameter | returned value |
str | Convert data to String type |
| Data of type String. Failure to convert will cause SQL matching to fail |
str_utf8 | Convert data to UTF-8 String type |
| UTF-8 String type data. Failure to convert will cause SQL matching to fail |
bool | Convert data to Boolean type |
| Boolean data. Failure to convert will cause SQL matching to fail |
int | Convert data to integer type |
| Integer type data. Failure to convert will cause SQL matching to fail |
float | Convert data to floating type |
| Floating type data. Failure to convert will cause SQL matching to fail |
map | Convert data to Map type |
| Map type data. Failure to convert will cause SQL matching to fail |
String functions
Function name | Purpose | parameter | returned value |
lower | convert to lowercase |
| Lowercase string |
upper | convert to uppercase |
| uppercase string |
trim | Remove left and right space |
| output string |
ltrim | Remove the left space |
| output string |
rtrim | Remove the right space |
| output string |
reverse | String inversion |
| output string |
strlen | string length |
| Integer value |
substr | Take a substring of characters |
| substring |
substring | Take a substring of characters |
| substring |
split | String splitting |
| Split string array |
split | String splitting |
| Split string array |
split | split string |
| Split string array |
Map function
function name | purpose | parameter | returned value |
map_get | Take the value of a Key in the Map, or return a null value if failed |
| The value of a Key in the Map. Support nested keys, such as “a.b.c” |
map_get | Take the value of a Key in the Map, if failed, return the specified default value |
| The value of a Key in the Map. Support nested keys, such as “a.b.c” |
map_put | Insert value into Map |
| The inserted Map. Support nested keys, such as “a.b.c” |
Array function
function name | purpose | parameter | returned value |
nth | Take the nth element, and subscripts start at 1 |
| Nth element |
length | Get the length of an array |
| the length of an array |
sublist | Take a sub-array of length len starting from the first element. Subscripts start at 1 |
| sub-array |
sublist | Take a sub-array of length len starting from the nth element. Subscripts start at 1 |
| sub-array |
first | Take the first element. Subscripts start at 1 |
| 1st element |
last | take the last element |
| the last element |
contains | Determine whether the data is in the array |
| Boolean value |
Hash function
function name | purpose | parameter | returned value |
md5 | evaluate MD5 |
| MD5 value |
sha | evaluate SHA |
| SHA value |
sha256 | evaluate SHA256 |
| SHA256 value |
Decoding and encoding functions
Function | Purpose | Parameters | Returned value |
---|---|---|---|
base64_encode | BASE64 encode | The binary to be encoded | The encoded base64-formatted string |
base64_decode | BASE64 decode | The base64-formatted string to be decoded | The decoded binary |
json_encode | JSON encode | The data to be encoded | The JSON string |
json_decode | JSON decode | The JSON string to be decoded | The decoded data |
bin2hexstr | Binary to Hex String | The binary | The hex string |
hexstr2bin | Binary to Hex String | The hex string | The binary |
Test SQL statements in Dashboard
The SQL statement test function is provided in the Dashboard interface, and the SQL test results are shown through the given SQL statement and event parameters.
On the rule creating interface, enter rule SQL and enable the SQL test switch:
Modify the field of the simulated event, or use the default configuration, and click the Test button:
The result of SQL processing will be displayed in the Test Output text box: