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
Copy file name to clipboardExpand all lines: mysql-plugin/docs/MySQL-connector.md
+6
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,12 @@ authentication. Optional for databases that do not require authentication.
22
22
23
23
**Password:** Password to use to connect to the specified database.
24
24
25
+
**Transaction Isolation Level** The transaction isolation level of the databse connection
26
+
- TRANSACTION_READ_COMMITTED: No dirty reads. Non-repeatable reads and phantom reads are possible.
27
+
- TRANSACTION_SERIALIZABLE: No dirty reads. Non-repeatable and phantom reads are prevented.
28
+
- TRANSACTION_REPEATABLE_READ: No dirty reads. Prevents non-repeatable reads, but phantom reads are still possible.
29
+
- TRANSACTION_READ_UNCOMMITTED: Allows dirty reads (reading uncommitted changes from other transactions). Non-repeatable reads and phantom reads are possible.
30
+
25
31
**Connection Arguments:** A list of arbitrary string tag/value pairs as connection arguments. These arguments
26
32
will be passed to the JDBC driver, as connection arguments, for JDBC drivers that may need additional configurations.
27
33
This is a semicolon-separated list of key-value pairs, where each pair is separated by a equals '=' and specifies
Copy file name to clipboardExpand all lines: mysql-plugin/docs/Mysql-batchsink.md
+6
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,12 @@ You also can use the macro function ${conn(connection-name)}.
39
39
40
40
**Password:** Password to use to connect to the specified database.
41
41
42
+
**Transaction Isolation Level** The transaction isolation level of the databse connection
43
+
- TRANSACTION_READ_COMMITTED: No dirty reads. Non-repeatable reads and phantom reads are possible.
44
+
- TRANSACTION_SERIALIZABLE: No dirty reads. Non-repeatable and phantom reads are prevented.
45
+
- TRANSACTION_REPEATABLE_READ: No dirty reads. Prevents non-repeatable reads, but phantom reads are still possible.
46
+
- TRANSACTION_READ_UNCOMMITTED: Allows dirty reads (reading uncommitted changes from other transactions). Non-repeatable reads and phantom reads are possible.
47
+
42
48
**Connection Arguments:** A list of arbitrary string key/value pairs as connection arguments. These arguments
43
49
will be passed to the JDBC driver as connection arguments for JDBC drivers that may need additional configurations.
Copy file name to clipboardExpand all lines: mysql-plugin/docs/Mysql-batchsource.md
+6
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,12 @@ For example, 'SELECT MIN(id),MAX(id) FROM table'. Not required if numSplits is s
49
49
50
50
**Password:** Password to use to connect to the specified database.
51
51
52
+
**Transaction Isolation Level** The transaction isolation level of the databse connection
53
+
- TRANSACTION_READ_COMMITTED: No dirty reads. Non-repeatable reads and phantom reads are possible.
54
+
- TRANSACTION_SERIALIZABLE: No dirty reads. Non-repeatable and phantom reads are prevented.
55
+
- TRANSACTION_REPEATABLE_READ: No dirty reads. Prevents non-repeatable reads, but phantom reads are still possible.
56
+
- TRANSACTION_READ_UNCOMMITTED: Allows dirty reads (reading uncommitted changes from other transactions). Non-repeatable reads and phantom reads are possible.
57
+
52
58
**Connection Arguments:** A list of arbitrary string key/value pairs as connection arguments. These arguments
53
59
will be passed to the JDBC driver as connection arguments for JDBC drivers that may need additional configurations.
0 commit comments