MariaDB Writer Activity

Writes specified view to MariaDB table.

Parameters

Name

Description

Type

Default

Title

Title of the activity to display on the designer.

text

Host Name

Name or address of the server where MariaDB database is hosted.

text

Port

Port number which MariaDB database is configured with.

int

3306

Database Name

Name of the database.

text

User Name

Valid MariaDB user name. Consider using vault feature with templating (e.g. ${vault:secret-mariadb-user})

text

Password

Password associated with above user. Consider using vault feature with templating (e.g. ${vault:secret-mariadb-password})

text

Source View

Name of DataRow view linked to the file

text

Bulk Insert

Use bulk insert feature of target database (experimental feature).

boolean

false

Batch Size

Write batch size.

int

1000

Mode

Write mode. Please see blow for list modes and their meanings.

enum

error

As

Target MariaDB table name.

text

Options

Additional options.

key-value

Supported Write Modes

Name

Description

error

Fail if table already exists.

append

Append to existing table or create new.

overwrite

Overwrite existing table or create new.

ignore

Ignore if table already exists or create new.