-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsample-mysql.xml
71 lines (71 loc) · 2.95 KB
/
sample-mysql.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<!-- MySQL to YDB importer job configuration example -->
<ydb-importer>
<workers>
<pool size="4"/>
</workers>
<source type="mysql">
<jdbc-class>com.mysql.cj.jdbc.Driver</jdbc-class>
<!-- org.mariadb.jdbc.Driver -->
<jdbc-url>jdbc:mysql://hostname:3306/dbname</jdbc-url>
<!-- jdbc:mariadb://hostname:3306/dbname -->
<username>username</username>
<password>password</password>
</source>
<target type="ydb">
<script-file>sample-mysql.yql.tmp</script-file>
<connection-string>grpcs://ydb.serverless.yandexcloud.net:2135?database=/ru-central1/b1gfvslmokutuvt2g019/etn63999hrinbapmef6g</connection-string>
<!--
<connection-string>grpcs://hostname.demo.com:2135?database=/local</connection-string>
-->
<!-- Custom TLS certificate file, if needed
<tls-certificate-file>ca.crt</tls-certificate-file>
-->
<!-- ENV, NONE, STATIC, METADATA, SAKEY -->
<auth-mode>ENV</auth-mode>
<!-- auth-mode: STATIC
<static-login>username</static-login>
<static-password>password</static-password>
-->
<!-- auth-mode: SAKEY
<sa-key-file>ydb-sa-keyfile.json</sa-key-file>
-->
<replace-existing>true</replace-existing>
<load-data>true</load-data>
<max-batch-rows>1000</max-batch-rows>
<max-blob-rows>200</max-blob-rows>
</target>
<table-options name="default">
<!-- ASIS, LOWER, UPPER -->
<case-mode>ASIS</case-mode>
<!-- Substitution values: ${schema}, ${table} -->
<table-name-format>mysql1/${schema}/${table}</table-name-format>
<!-- Substitution values: ${schema}, ${table}, ${field} -->
<blob-name-format>mysql1/${schema}/${table}_${field}</blob-name-format>
<!-- DATE, INT, STR -->
<conv-date>INT</conv-date>
<conv-timestamp>INT</conv-timestamp>
<skip-unknown-types>true</skip-unknown-types>
</table-options>
<table-map options="default">
<include-schemas regexp="true">.*</include-schemas>
</table-map>
<!-- Note the case for the table and column names below.
Generally they are case-insensitive, however, for the Importer to work properly,
case below should match the case in which the objects are named in the database.
-->
<table-ref options="default">
<schema-name>information_schema</schema-name>
<table-name>COLUMNS</table-name>
<key-column>TABLE_SCHEMA</key-column>
<key-column>TABLE_NAME</key-column>
<key-column>COLUMN_NAME</key-column>
</table-ref>
<table-ref options="default">
<schema-name>information_schema</schema-name>
<table-name>tables</table-name>
<query-text>SELECT * FROM information_schema.`tables`</query-text>
<key-column>TABLE_SCHEMA</key-column>
<key-column>TABLE_NAME</key-column>
</table-ref>
</ydb-importer>