Skip to content
Last updated

MySQL Import Integration CLI

In instances where the TD Console is not available or not usable, you can also use the MySQL data connector from the CLI. The following instructions show you how to import data using the CLI.

Prerequisites

  • Basic knowledge of Treasure Data
  • Basic knowledge of MySQL
  • A MySQL instance that is reachable from Treasure Data

If you are using MySQL Community Server 5.6 and 5.7 and want to use SSL, set the parameters enabledTLSProtocols and TLSv1.2 to resolve a compatability issue with the underlying library of the connector. For other MySQL versions, the integration will try to use the highest TLS version automatically.

Install ‘td’ command v0.11.9 or later

Install the newest TD Toolbelt.

Create Configuration File

Prepare configuration file (for example: load.yml) like below, with your MySQL access information.

in:
  type: mysql
  host: mysql_host_name
  port: 3306
  user: test_user
  password: test_password
  database: test_database
  table: test_table
  select: "*"
out:
  mode: replace

This example dumps all records inside the table. You can have more detailed control with additional parameters.

If you want to use SSL option, use these options:

  • requireSSL
  • useSSL
  • verifyServerCertificate
in:
  type: mysql
  host: mysql_host_name
  port: 3306
  user: test_user
  password: test_password
  options:
    requireSSL: true
    useSSL: true
    verifyServerCertificate: false
  database: test_database
  table: test_table
  select: "*"
out:
  mode: replace

For more details on available out modes, see Appendix.

Preview data (optional)

You can preview the data to be imported using the command td connector:preview.

$ td connector:preview load.yml
+---------+--------------+----------------------------------+------------+---------------------------+
| id:long | name:string  | description:string               | price:long | created_at:timestamp      |
+---------+--------------+----------------------------------+------------+---------------------------+
| 1       | "item name1" | "26e3c3625366591bc2ffc6e262976e" | 2419       | "2014-02-16 13:01:06 UTC" |
| 2       | "item name2" | "3e9dd9474dacb78afd607f9e0a3366" | 1298       | "2014-05-24 13:59:26 UTC" |
| 3       | "item name3" | "9b6c9e4a140284d3951681e9e047f6" | 9084       | "2014-06-21 00:18:21 UTC" |
| 4       | "item name4" | "a11faf5e63c1b02a3d4c2b5cbb7331" | 669        | "2014-05-02 03:44:08 UTC" |
| 6       | "item name6" | "6aa15471c373ddc8a6469e1c918f98" | 3556       | "2014-03-29 08:30:23 UTC" |
+---------+--------------+----------------------------------+------------+---------------------------+

Execute Load Job

Submit the load job. It may take a couple of hours depending on the data size. Users need to specify the database and table where their data are stored.

We recommend that you specify --time-column option, because Treasure Data’s storage is partitioned by time (see also architecture) If the option is not given, the Data Connector will choose the first long or timestamp column as the partitioning time. The type of the column specified by --time-column must be either of long and timestamp type.

If your data doesn’t have a time column you may add it using add_time filter option. More details at add_time filter plugin.

$ td connector:issue load.yml --database td_sample_db --table td_sample_table --time-column created_at

The above command assumes you have already created database(td_sample_db) and table(td_sample_table). If the database or the table do not exist in TD this command will not succeed. Create the database and table through the TD Console or use --auto-create-table option with td connector:issue command to auto create the database and table:

$ td connector:issue load.yml --database td_sample_db --table td_sample_table --time-column created_at --auto-create-table

You can assign Time Format column to the "Partitioning Key" by "--time-column" option.

Scheduled Execution

You can schedule periodic Data Connector execution for periodic MySQL import using our high availability scheduler. By using this feature, you no longer need a cron daemon on your local data center.

Incremental load

You can load records incrementally by specifying columns from your table to the incremental_columns parameter. Optionally, you may specify some initial values to the last_record parameter.

in:
  type: mysql
  options: {useLegacyDatetimeCode: false}
  host: mysql_host_name
  port: 3306
  user: test_user
  password: test_password
  database: test_database
  table: test_table
  incremental: true
  incremental_columns: [id, created_at]
  last_record: [10000, '2014-02-16T13:01:06.000000Z']
out:
  mode: append
  exec: {}

To avoid full table scans use the incremental\_columns: option to create an index on the relevant columns. For this example, create the following index:

CREATE INDEX embulk_incremental_loading_index ON test_table (id, created_at);

The connector automatically creates the query and sorts the value.

-- when last_record wasn't given
SELECT * FROM(
    ...original query is here
)
ORDER BY id, created_at
-- when last_record was given
SELECT * FROM(
    ...original query is here
)
WHERE id > 10000 OR (id = 10000 AND created_at > '2014-02-16T13:01:06.000000Z')
ORDER BY id, created_at

The connector automatically captures last_record and uses it at the next scheduled execution.

in:
  type: mysql
  options:
    useLegacyDatetimeCode: false
  ...
out:
  ...

Config Diff
---
in:
  last_record:
  - 20000
  - '2015-06-16T16:32:14.000000Z'

query option is not available when you set incremental: true. Only strings, integers, datetime and timestamp are supported as incremental_columns. If you want to use datetime/timestamp type columns as incremental_columns, set useLegacyDatetimeCode: false as JDBC Connection options at GUI or options at configuration file.

Create Schedule

A new schedule can be created using the td connector:create command. The name of the schedule, cron-style schedule, the database and table where their data will be stored, and the Data Connector configuration file are required.

$ td connector:create \
    daily_mysql_import \
    "10 0 * * *" \
    td_sample_db \
    td_sample_table \
    load.yml

The cron parameter also accepts these three options: @hourly, @daily and @monthly. By default, schedule is setup in UTC timezone. You can set the schedule in a timezone using -t or --timezone option. The--timezone option only supports extended timezone formats like 'Asia/Tokyo', 'America/Los_Angeles' etc. Timezone abbreviations like PST, CST are *not* supported and may lead to unexpected schedules.

List the Schedules

You can see the list of currently scheduled entries by td connector:list.

$ td connector:list
+--------------------+--------------+----------+-------+--------------+-----------------+-------------------------+
| Name               | Cron         | Timezone | Delay | Database     | Table           | Config                  |
+--------------------+--------------+----------+-------+--------------+-----------------+-------------------------+
| daily_mysql_import | 10 0 * * *   | UTC      | 0     | td_sample_db | td_sample_table | {"type"=>"mysql", ... } |
+--------------------+--------------+----------+-------+--------------+-----------------+-------------------------+

Show the Schedules' Details

td connector:show shows the execution settings of a schedule entry.

% td connector:show daily_mysql_import
Name     : daily_mysql_import
Cron     : 10 0 * * *
Timezone : UTC
Delay    : 0
Database : td_sample_db
Table    : td_sample_table

td connector:history shows the execution history of a schedule entry. To investigate the results of each individual execution, use td job jobid.

% td connector:history daily_mysql_import
+--------+---------+---------+--------------+-----------------+----------+---------------------------+----------+
| JobID  | Status  | Records | Database     | Table           | Priority | Started                   | Duration |
+--------+---------+---------+--------------+-----------------+----------+---------------------------+----------+
| 578066 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-18 00:10:05 +0000 | 160      |
| 577968 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-17 00:10:07 +0000 | 161      |
| 577914 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-16 00:10:03 +0000 | 152      |
| 577872 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-15 00:10:04 +0000 | 163      |
| 577810 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-14 00:10:04 +0000 | 164      |
| 577766 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-13 00:10:04 +0000 | 155      |
| 577710 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-12 00:10:05 +0000 | 156      |
| 577610 | success | 10000   | td_sample_db | td_sample_table | 0        | 2015-04-11 00:10:04 +0000 | 157      |
+--------+---------+---------+--------------+-----------------+----------+---------------------------+----------+
8 rows in set

Delete the Schedule

td connector:delete removes the schedule.

$ td connector:delete daily_mysql_import

Appendix

Modes for out plugin

You can specify file import mode in out section of load.yml.

For example, you may choose to append data or replace data in an existing table in Treasure Data.

ModeDescriptionExamples
AppendRecords are appended to the target table.in: ... out: mode: append
Always ReplaceReplaces data in the target table. Any manual schema changes made to the target table remain intact.in: ... out: mode: replace
Replace on new dataReplaces data in the target table only when there is new data to import.in: ... out: mode: replace_on_new_data