Mysql
Mysql
Connect your Mysql data to Airweave
Overview
The Mysql connector allows you to sync data from Mysql into Airweave, making it available for search and retrieval by your agents.
Configuration
MySQLSource
MySQL source implementation.
This source connects to a MySQL database and generates entities for each table in the specified schemas. It uses database introspection to:
- Discover tables and their structures
- Create appropriate entity classes dynamically
- Generate entities for each table’s data
Authentication
This connector uses a custom authentication configuration class: MySQLAuthConfig
.
Authentication Configuration
MySQL authentication configuration.
host
The host of the MySQL database
port
The port of the MySQL database
database
The name of the MySQL database
user
The username for the MySQL database
password
The password for the MySQL database
schema
The schema of the MySQL database
tables
Comma separated list of tables to sync. For example, ‘users,orders’. For all tables, use ’*’