database | Name of the Doris database to export data to. | demo | ✅ |
host | Hostname or IP address of your Doris database server. | mage.abc.us-west-2.rds.amazonaws.com | ✅ |
port | Port number on which Doris is listening. The default is usually 9030. | 9030 | ✅ |
username | Username used to connect to the Doris database. Must have permission to read and write data. | root | ✅ |
password | Password for the above user. | abc123... | ✅ |
table | Name of the destination table in Doris that Mage will create or write to. | dim_users_v1 | ✅ |
connection_method | Method used to connect to Doris. Choose between direct or ssh_tunnel. | direct or ssh_tunnel | ✅ |
ssh_host | (Optional) Bastion host IP or DNS if using SSH tunnel. | 123.45.67.89 | ❌ |
ssh_port | (Optional) Port of the bastion host. Defaults to 22. | 22 | ❌ |
ssh_username | (Optional) Username to authenticate with the bastion server. | bastion_user | ❌ |
ssh_password | (Optional) Password for SSH authentication. Required if not using a private key. | password | ❌ |
ssh_pkey | (Optional) Path to or contents of private key file used for SSH authentication. | /path/to/private/key.pem | ❌ |
conn_kwargs | (Optional) Additional MySQL connection options as a dictionary. | {"ssl_ca": "CARoot.pem"} | ❌ |
use_lowercase | (Optional) Whether to convert column names to lowercase. | true or false | ❌ |