You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -90,6 +91,23 @@ For example, when using OceanBase database, you need to set it to 'mysql' or 'or
90
91
91
92
Postgres 9.5 version or below,please set it to `postgresLow` to support cdc
92
93
94
+
### dialect [string]
95
+
96
+
The appointed dialect, if it does not exist, is still obtained according to the url, and the priority is higher than the url. For example,when using starrocks, you need set it to `starrocks`. Similarly, when using mysql, you need to set its value to `mysql`.
97
+
98
+
#### dialect list
99
+
100
+
|| Dialect Name ||
101
+
|-----------|--------------|----------|
102
+
| Greenplum | DB2 | Dameng |
103
+
| Gbase8a | HIVE | KingBase |
104
+
| MySQL | StarRocks | Oracle |
105
+
| Phoenix | Postgres | Redshift |
106
+
| SapHana | Snowflake | Sqlite |
107
+
| SqlServer | Tablestore | Teradata |
108
+
| Vertica | OceanBase | XUGU |
109
+
| IRIS | Inceptor | Highgo |
110
+
93
111
### database [string]
94
112
95
113
Use this `database` and `table-name` auto-generate sql and receive upstream input datas write to database.
@@ -105,11 +123,13 @@ This option is mutually exclusive with `query` and has a higher priority.
105
123
The table parameter can fill in the name of an unwilling table, which will eventually be used as the table name of the creation table, and supports variables (`${table_name}`, `${schema_name}`). Replacement rules: `${schema_name}` will replace the SCHEMA name passed to the target side, and `${table_name}` will replace the name of the table passed to the table at the target side.
Copy file name to clipboardexpand all lines: docs/en/connector-v2/source/Jdbc.md
+19
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ supports query SQL and can achieve projection effect.
49
49
| password | String | No | - | password |
50
50
| query | String | No | - | Query statement |
51
51
| compatible_mode | String | No | - | The compatible mode of database, required when the database supports multiple compatible modes.<br/> For example, when using OceanBase database, you need to set it to 'mysql' or 'oracle'. <br/> when using starrocks, you need set it to `starrocks`|
52
+
| dialect | String | No | - | The appointed dialect, if it does not exist, is still obtained according to the url, and the priority is higher than the url. <br/> For example,when using starrocks, you need set it to `starrocks`|
52
53
| connection_check_timeout_sec | Int | No | 30 | The time in seconds to wait for the database operation used to validate the connection to complete. |
53
54
| partition_column | String | No | - | The column name for split data. |
54
55
| partition_upper_bound | Long | No | - | The partition_column max value for scan, if not set SeaTunnel will query database get max value. |
@@ -93,6 +94,24 @@ decimal_type_narrowing = false
93
94
| NUMBER(6, 0) | Decimal(6, 0) |
94
95
| NUMBER(10, 0) | Decimal(10, 0) |
95
96
97
+
### dialect [string]
98
+
99
+
The appointed dialect, if it does not exist, is still obtained according to the url, and the priority is higher than the url. For example,when using starrocks, you need set it to `starrocks`. Similarly, when using mysql, you need to set its value to `mysql`.
100
+
101
+
#### dialect list
102
+
103
+
|| Dialect Name ||
104
+
|-----------|--------------|----------|
105
+
| Greenplum | DB2 | Dameng |
106
+
| Gbase8a | HIVE | KingBase |
107
+
| MySQL | StarRocks | Oracle |
108
+
| Phoenix | Postgres | Redshift |
109
+
| SapHana | Snowflake | Sqlite |
110
+
| SqlServer | Tablestore | Teradata |
111
+
| Vertica | OceanBase | XUGU |
112
+
| IRIS | Inceptor | Highgo |
113
+
114
+
96
115
## Parallel Reader
97
116
98
117
The JDBC Source connector supports parallel reading of data from tables. SeaTunnel will use certain rules to split the data in the table, which will be handed over to readers for reading. The number of readers is determined by the `parallelism` option.
0 commit comments