MariaDB MaxScale Exasolrouter
Learn how to configure the Exasolrouter in MariaDB MaxScale to route analytical queries to Exasol while maintaining transactional workloads in MariaDB
This functionality is available from MaxScale 25.10.1.
In MaxScale configuration, this module is referred to as
exasolrouter. For documentation purposes, it is styled asExasolrouterto enhance readability.
Description
The Exasolrouter module is primarily intended to be used in combination with SmartRouter within hybrid transactional/analytical processing (HTAP) environments, where:
Write queries are routed to MariaDB
Read queries are routed to either MariaDB or Exasol, based on runtime performance measurements
The Exasolrouter module can also be used in standalone mode to expose Exasol through a MariaDB client protocol listener. In this configuration, MaxScale acts as a protocol bridge between MariaDB clients and the Exasol ODBC driver. This mode is primarily designed for debugging or specialized deployments.
SmartRouter measures query performance using canonical query forms (with constants replaced by placeholders). When a new canonical query is encountered, the preferred backend is based on measured response times and periodically reevaluates its decision.
For a detailed explanation of the routing algorithm, see SmartRouter.
This architecture allows applications to use a single connection endpoint for both Online Transactional Processing (OLTP) and analytics workloads without application-level routing logic.
Prerequisites
MariaDB MaxScale 25.10.1 or later must be installed. See the installation guide if required.
MaxScale running on x86_64 architecture
The Exasolrouter module uses the Exasol ODBC driver to establish communication with Exasol.
The Exasol ODBC driver currently requires x86_64.
So, MaxScale must run on x86_64 when using
exasolrouter.
Operational MariaDB deployment
Operational Exasol deployment
Network connectivity between MaxScale, MariaDB, and Exasol
Default ports:
MariaDB: 3306
MaxScale: 3306
Exasol: 8563
Configuring the Exasolrouter in MariaDB MaxScale
Step 1. Install the Exasol ODBC driver on the MaxScale host.
The Exasolrouter leverages Exasol’s native ODBC connector to deliver optimal performance and full functionality.
Go to the Exasol ODBC download page and select the driver version that matches the operating system of the MaxScale host.
Download the appropriate Exasol ODBC driver for your operating system (x86_64 architecture is required).
Install the downloaded driver according to the platform-specific installation instructions.
Replace the version number in the commands below with the version you downloaded:
Step 2. Create the required users in both MariaDB and Exasol.
MariaDB User If you do not already have a MaxScale monitor and service user, create one using the following commands. These grants allow MaxScale to monitor the health of the MariaDB node and handle user authentication.
Exasol User
It is considered best practice to avoid using the sys user for application access. Instead, create a dedicated user with the appropriate privileges.
If exaplus utility is not available in your PATH or if you are not confirm where this utility is located on your system, you can locate it using the following command:
This command searches your entire system and suppresses permission-denied errors. A typical path looks like:
Replace the IP address, port, and passwords to match your environment:
Important: For all connections to Exasol, the Exasolrouter uses a single service user. Exasol does not currently receive user‑level authentication from MariaDB clients.
Step 3. Configure the MaxScale server and monitor.
Define the MariaDB server that will handle primary OLTP workloads. Replace the IP address and password to match your environment:
Step 4. Configure the MaxScale Exasolrouter.
Create the Exasolrouter service. This service contains the connection information for Exasol, including the ODBC driver path and credentials.
Replace the following placeholders with values that match your actual environment:
DRIVER: Full path to thelibexaodbc.sofile from Step 1EXAHOST: Your Exasol host and portUIDandPWD: The Exasol user credentials created in Step 2
Step 5. Configure the MaxScale SmartRouter.
The SmartRouter integrates the MariaDB server with the Exasolrouter and is responsible for distributing queries between the two backends. Replace the password to match your environment:
The master parameter designates the cluster that receives all write operations. In this configuration, all writes are directed to MariaDB.
Step 6: Configure the MaxScale service and listeners.
Create a listener that defines the port on which MaxScale will accept client connections for the SmartRouter service. Replace the port number if a different port is required:
Step 7: Test and verify the configuration.
This step provides guidance on verifying whether the Exasol and SmartRouter components are connected and functioning correctly. It also explains how to enable logging for verification purposes and outlines data synchronization requirements.
Connecting to the service.
First, verify that you can connect to MaxScale on the configured listener port:
Replace:
<maxscale-ip>with the IP address of your MaxScale host.<exa-listener-port>with the port you configured for theexasolrouterlistener.<username>with a valid MariaDB username that MaxScale can authenticate.
To perform a very basic connectivity test:
If the connection is established successfully, the result will return as
connected = 1. This confirms that the client can reach MaxScale and that the router is actively listening.Enabling debug logs for verification To verify which backend (MariaDB or Exasol) executed a query and inspect routing decisions, enable debug and info logging in MaxScale, and then tail the main logs:
Then, monitor the MaxScale log:
When SmartRouter re-measures a query, you will see log output messages similar to:
These messages indicate which backend is being evaluated. Another way to determine how a query was executed is by using the Hint Filter. You can force routing to a specific backend by adding a SQL comment.
Data synchronizing requirements
The Exasolrouter does not automatically synchronize data between MariaDB and Exasol.
In the event that Change Data Capture (CDC) is not set up:
Data inserted into MariaDB will not automatically appear in Exasol.
Unless the same dataset is present in both systems, queries sent to Exasol may result in empty results.
In order to conduct relevant query testing:
Put the same datasets into Exasol and MariaDB, or
Set up CDC to copy data to Exasol from MariaDB.
Behavior during Backend Unavailability
SmartRouter automatically connects to the designated master (MariaDB) in the event that Exasol is unavailable (for example, due to a network outage or unavailability). To maintain availability for OLTP activities, all reads and writes will only be sent to MariaDB.
Known Limitations
The MariaDB MaxScale–Exasol integration includes some limitations. It includes:
Exasol access is limited to a single service user (unlike MariaDB, which required per user authentication)
The SQL preparser does not support all MariaDB functions.
The following function mappings are necessary:
FROM_UNIXTIME()→FROM_POSIX_TIME()DATE_FORMAT→TO_CHAR
The following interactive statements are not the primary focus and may not behave as expected:
SHOW TABLESUse databaseDESCRIBE tableDDL statements
See Also
Last updated
Was this helpful?

