TiDBBinlogクラスターの展開

このドキュメントでは、 バイナリパッケージを使用してTiDBBinlogをデプロイするの方法について説明します。

ハードウェア要件

Pump and Drainerは、Intelx86-64アーキテクチャを備えた64ビットユニバーサルハードウェアサーバープラットフォームにデプロイされて動作します。

開発、テスト、および実稼働の環境では、サーバーハードウェアの要件は次のとおりです。

サービスサーバーの数CPUディスクメモリー
ポンプ38コア+SSD、200 GB +16G
ドレイナー18コア+SAS、100 GB以上(binlogがローカルファイルとして出力される場合、ディスクサイズは、これらのファイルが保持される期間によって異なります。)16G

TiUPを使用してTiDBBinlogをデプロイ

TiUPを使用してTiDBBinlogをデプロイすることをお勧めします。これを行うには、TiUPを使用してTiDBをデプロイするときに、TiDBBinlogのdrainerpumpのノード情報をTiDBBinlogデプロイメントトポロジに追加する必要があります。詳細な展開情報については、 TiUPを使用してTiDBクラスターをデプロイするを参照してください。

バイナリパッケージを使用してTiDBBinlogをデプロイ

公式バイナリパッケージをダウンロードする

次のコマンドを実行して、パッケージをダウンロードします。

version="latest" for nightly builds && wget https://download.pingcap.org/tidb-latest-linux-amd64.{tar.gz,sha256}

ファイルの整合性を確認してください。結果に問題がなければ、ファイルは正しいです。

sha256sum -c tidb-latest-linux-amd64.sha256

TiDB v2.1.0 GA以降のバージョンでは、PumpとDrainerはすでにTiDBダウンロードパッケージに含まれています。他のTiDBバージョンの場合、次のコマンドを使用して、PumpとDrainerを別々にダウンロードする必要があります。

wget https://download.pingcap.org/tidb-binlog-$version-linux-amd64.{tar.gz,sha256}

ファイルの整合性を確認してください。結果に問題がなければ、ファイルは正しいです。

sha256sum -c tidb-binlog-$version-linux-amd64.sha256

使用例

3つのPDノード、1つのTiDBノード、2つのPumpノード、および1つのDrainerノードがあるとすると、各ノードの情報は次のようになります。

ノードIP
TiDB192.168.0.10
PD1192.168.0.16
PD2192.168.0.15
PD3192.168.0.14
ポンプ192.168.0.11
ポンプ192.168.0.12
ドレイナー192.168.0.13

次のパートでは、上記のノードに基づいてポンプとドレイナーを使用する方法を示します。

  1. バイナリを使用してPumpをデプロイします。

    • Pumpのコマンドラインパラメータを表示するには、 ./bin/pump -helpを実行します。

      Usage of Pump: -L string the output information level of logs: debug, info, warn, error, fatal ("info" by default) -V the print version information -addr string the RPC address through which Pump provides the service (-addr="192.168.0.11:8250") -advertise-addr string the RPC address through which Pump provides the external service (-advertise-addr="192.168.0.11:8250") -config string the path of the configuration file. If you specify the configuration file, Pump reads the configuration in the configuration file first. If the corresponding configuration also exits in the command line parameters, Pump uses the configuration of the command line parameters to cover that of the configuration file. -data-dir string the path where the Pump data is stored -gc int the number of days to retain the data in Pump ("7" by default) -heartbeat-interval int the interval of the heartbeats Pump sends to PD (in seconds) -log-file string the file path of logs -log-rotate string the switch frequency of logs (hour/day) -metrics-addr string the Prometheus Pushgateway address. If not set, it is forbidden to report the monitoring metrics. -metrics-interval int the report frequency of the monitoring metrics ("15" by default, in seconds) -node-id string the unique ID of a Pump node. If you do not specify this ID, the system automatically generates an ID based on the host name and listening port. -pd-urls string the address of the PD cluster nodes (-pd-urls="http://192.168.0.16:2379,http://192.168.0.15:2379,http://192.168.0.14:2379") -fake-binlog-interval int the frequency at which a Pump node generates fake binlog ("3" by default, in seconds)
    • 例として「192.168.0.11」にPumpをデプロイすると、Pump構成ファイルは次のようになります。

      # Pump Configuration # the bound address of Pump addr = "192.168.0.11:8250" # the address through which Pump provides the service advertise-addr = "192.168.0.11:8250" # the number of days to retain the data in Pump ("7" by default) gc = 7 # the directory where the Pump data is stored data-dir = "data.pump" # the interval of the heartbeats Pump sends to PD (in seconds) heartbeat-interval = 2 # the address of the PD cluster nodes (each separated by a comma with no whitespace) pd-urls = "http://192.168.0.16:2379,http://192.168.0.15:2379,http://192.168.0.14:2379" # [security] # This section is generally commented out if no special security settings are required. # The file path containing a list of trusted SSL CAs connected to the cluster. # ssl-ca = "/path/to/ca.pem" # The path to the X509 certificate in PEM format that is connected to the cluster. # ssl-cert = "/path/to/drainer.pem" # The path to the X509 key in PEM format that is connected to the cluster. # ssl-key = "/path/to/drainer-key.pem" # [storage] # Set to true (by default) to guarantee reliability by ensuring binlog data is flushed to the disk # sync-log = true # When the available disk capacity is less than the set value, Pump stops writing data. # 42 MB -> 42000000, 42 mib -> 44040192 # default: 10 gib # stop-write-at-available-space = "10 gib" # The LSM DB settings embedded in Pump. Unless you know this part well, it is usually commented out. # [storage.kv] # block-cache-capacity = 8388608 # block-restart-interval = 16 # block-size = 4096 # compaction-L0-trigger = 8 # compaction-table-size = 67108864 # compaction-total-size = 536870912 # compaction-total-size-multiplier = 8.0 # write-buffer = 67108864 # write-L0-pause-trigger = 24 # write-L0-slowdown-trigger = 17
    • ポンプの起動例:

      ./bin/pump -config pump.toml

      コマンドラインパラメーターが構成ファイルパラメーターと同じである場合、コマンドラインパラメーターの値が使用されます。

  2. バイナリを使用してDrainerをデプロイします。

    • Drainerのコマンドラインパラメータを表示するには、 ./bin/drainer -helpを実行します。

      Usage of Drainer: -L string the output information level of logs: debug, info, warn, error, fatal ("info" by default) -V the print version information -addr string the address through which Drainer provides the service (-addr="192.168.0.13:8249") -c int the number of the concurrency of the downstream for replication. The bigger the value, the better throughput performance of the concurrency ("1" by default). -cache-binlog-count int the limit on the number of binlog items in the cache ("8" by default) If a large single binlog item in the upstream causes OOM in Drainer, try to lower the value of this parameter to reduce memory usage. -config string the directory of the configuration file. Drainer reads the configuration file first. If the corresponding configuration exists in the command line parameters, Drainer uses the configuration of the command line parameters to cover that of the configuration file. -data-dir string the directory where the Drainer data is stored ("data.drainer" by default) -dest-db-type string the downstream service type of Drainer The value can be "mysql", "tidb", "kafka", and "file". ("mysql" by default) -detect-interval int the interval of checking the online Pump in PD ("10" by default, in seconds) -disable-detect whether to disable the conflict monitoring -disable-dispatch whether to disable the SQL feature of splitting a single binlog file. If it is set to "true", each binlog file is restored to a single transaction for replication based on the order of binlogs. It is set to "False", when the downstream is MySQL. -ignore-schemas string the db filter list ("INFORMATION_SCHEMA,PERFORMANCE_SCHEMA,mysql,test" by default) It does not support the Rename DDL operation on tables of `ignore schemas`. -initial-commit-ts If Drainer does not have the related breakpoint information, you can configure the related breakpoint information using this parameter. ("-1" by default) If the value of this parameter is `-1`, Drainer automatically obtains the latest timestamp from PD. -log-file string the path of the log file -log-rotate string the switch frequency of log files, hour/day -metrics-addr string the Prometheus Pushgateway address It it is not set, the monitoring metrics are not reported. -metrics-interval int the report frequency of the monitoring metrics ("15" by default, in seconds) -node-id string the unique ID of a Drainer node. If you do not specify this ID, the system automatically generates an ID based on the host name and listening port. -pd-urls string the address of the PD cluster nodes (-pd-urls="http://192.168.0.16:2379,http://192.168.0.15:2379,http://192.168.0.14:2379") -safe-mode Whether to enable safe mode so that data can be written into the downstream MySQL/TiDB repeatedly. This mode replaces the `INSERT` statement with the `REPLACE` statement and splits the `UPDATE` statement into `DELETE` plus `REPLACE`. -txn-batch int the number of SQL statements of a transaction which are output to the downstream database ("1" by default)
    • 例として「192.168.0.13」にDrainerをデプロイすると、Drainer構成ファイルは次のようになります。

      # Drainer Configuration. # the address through which Drainer provides the service ("192.168.0.13:8249") addr = "192.168.0.13:8249" # the address through which Drainer provides the external service advertise-addr = "192.168.0.13:8249" # the interval of checking the online Pump in PD ("10" by default, in seconds) detect-interval = 10 # the directory where the Drainer data is stored "data.drainer" by default) data-dir = "data.drainer" # the address of the PD cluster nodes (each separated by a comma with no whitespace) pd-urls = "http://192.168.0.16:2379,http://192.168.0.15:2379,http://192.168.0.14:2379" # the directory of the log file log-file = "drainer.log" # Drainer compresses the data when it gets the binlog from Pump. The value can be "gzip". If it is not configured, it will not be compressed # compressor = "gzip" # [security] # This section is generally commented out if no special security settings are required. # The file path containing a list of trusted SSL CAs connected to the cluster. # ssl-ca = "/path/to/ca.pem" # The path to the X509 certificate in PEM format that is connected to the cluster. # ssl-cert = "/path/to/pump.pem" # The path to the X509 key in PEM format that is connected to the cluster. # ssl-key = "/path/to/pump-key.pem" # Syncer Configuration [syncer] # If the item is set, the sql-mode will be used to parse the DDL statement. # If the downstream database is MySQL or TiDB, then the downstream sql-mode # is also set to this value. # sql-mode = "STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION" # the number of SQL statements of a transaction that are output to the downstream database ("20" by default) txn-batch = 20 # the number of the concurrency of the downstream for replication. The bigger the value, # the better throughput performance of the concurrency ("16" by default) worker-count = 16 # whether to disable the SQL feature of splitting a single binlog file. If it is set to "true", # each binlog file is restored to a single transaction for replication based on the order of binlogs. # If the downstream service is MySQL, set it to "False". disable-dispatch = false # In safe mode, data can be written into the downstream MySQL/TiDB repeatedly. # This mode replaces the `INSERT` statement with the `REPLACE` statement and replaces the `UPDATE` statement with `DELETE` plus `REPLACE` statements. safe-mode = false # the downstream service type of Drainer ("mysql" by default) # Valid value: "mysql", "tidb", "file", and "kafka". db-type = "mysql" # If `commit ts` of the transaction is in the list, the transaction is filtered and not replicated to the downstream. ignore-txn-commit-ts = [] # the db filter list ("INFORMATION_SCHEMA,PERFORMANCE_SCHEMA,mysql,test" by default) # Does not support the Rename DDL operation on tables of `ignore schemas`. ignore-schemas = "INFORMATION_SCHEMA,PERFORMANCE_SCHEMA,mysql" # `replicate-do-db` has priority over `replicate-do-table`. When they have the same `db` name, # regular expressions are supported for configuration. # The regular expression should start with "~". # replicate-do-db = ["~^b.*","s1"] # [syncer.relay] # It saves the directory of the relay log. The relay log is not enabled if the value is empty. # The configuration only comes to effect if the downstream is TiDB or MySQL. # log-dir = "" # the maximum size of each file # max-file-size = 10485760 # [[syncer.replicate-do-table]] # db-name ="test" # tbl-name = "log" # [[syncer.replicate-do-table]] # db-name ="test" # tbl-name = "~^a.*" # Ignore the replication of some tables # [[syncer.ignore-table]] # db-name = "test" # tbl-name = "log" # the server parameters of the downstream database when `db-type` is set to "mysql" [syncer.to] host = "192.168.0.13" user = "root" # If you do not want to set a cleartext `password` in the configuration file, you can create `encrypted_password` using `./binlogctl -cmd encrypt -text string`. # When you have created an `encrypted_password` that is not empty, the `password` above will be ignored, because `encrypted_password` and `password` cannot take effect at the same time. password = "" encrypted_password = "" port = 3306 [syncer.to.checkpoint] # When the checkpoint type is "mysql" or "tidb", this option can be # enabled to change the database that saves the checkpoint # schema = "tidb_binlog" # Currently only the "mysql" and "tidb" checkpoint types are supported # You can remove the comment tag to control where to save the checkpoint # The default method of saving the checkpoint for the downstream db-type: # mysql/tidb -> in the downstream MySQL or TiDB database # file/kafka -> file in `data-dir` # type = "mysql" # host = "127.0.0.1" # user = "root" # password = "" # `encrypted_password` is encrypted using `./binlogctl -cmd encrypt -text string`. # When `encrypted_password` is not empty, the `password` above will be ignored. # encrypted_password = "" # port = 3306 # the directory where the binlog file is stored when `db-type` is set to `file` # [syncer.to] # dir = "data.drainer" # the Kafka configuration when `db-type` is set to "kafka" # [syncer.to] # only one of kafka-addrs and zookeeper-addrs is needed. If both are present, the program gives priority # to the kafka address in zookeeper # zookeeper-addrs = "127.0.0.1:2181" # kafka-addrs = "127.0.0.1:9092" # kafka-version = "0.8.2.0" # The maximum number of messages (number of binlogs) in a broker request. If it is left blank or a value smaller than 0 is configured, the default value 1024 is used. # kafka-max-messages = 1024 # The maximum size of a broker request (unit: byte). The default value is 1 GiB and the maximum value is 2 GiB. # kafka-max-message-size = 1073741824 # the topic name of the Kafka cluster that saves the binlog data. The default value is <cluster-id>_obinlog. # To run multiple Drainers to replicate data to the same Kafka cluster, you need to set different `topic-name`s for each Drainer. # topic-name = ""
    • ドレイナーの開始:

      ノート:

      ダウンストリームがMySQL/TiDBの場合、データの整合性を保証するには、Drainerを最初に起動する前に、 initial-commit-tsの値を取得してデータの完全バックアップを作成し、データを復元する必要があります。

      Drainerを初めて起動するときは、 initial-commit-tsパラメーターを使用します。

      ./bin/drainer -config drainer.toml -initial-commit-ts {initial-commit-ts}

      コマンドラインパラメータと設定ファイルパラメータが同じ場合は、コマンドラインのパラメータ値が使用されます。

  3. TiDBサーバーの起動:

    • Pump and Drainerを起動した後、TiDBサーバーの構成ファイルに次のセクションを追加して、binlogを有効にしてTiDBサーバーを起動します。

      [binlog] enable=true
    • TiDBサーバーはPDから登録されたポンプのアドレスを取得し、それらすべてにデータをストリーミングします。登録されているPumpインスタンスがない場合、TiDBサーバーは起動を拒否するか、Pumpインスタンスがオンラインになるまで起動をブロックします。

ノート:

  • TiDBが実行されているときは、少なくとも1つのポンプが正常に実行されていることを保証する必要があります。
  • TiDBサーバーでTiDBBinlogサービスを有効にするには、TiDBで-enable-binlogスタートアップパラメーターを使用するか、TiDBサーバー構成ファイルの[binlog]セクションにenable=trueを追加します。
  • 同じクラスタのすべてのTiDBインスタンスでTiDBBinlogサービスが有効になっていることを確認してください。有効になっていないと、データレプリケーション中にアップストリームとダウンストリームのデータの不整合が発生する可能性があります。 TiDB Binlogサービスが有効になっていないTiDBインスタンスを一時的に実行する場合は、TiDB構成ファイルにrun_ddl=falseを設定します。
  • Drainerは、 ignore schemasのテーブル(フィルターリスト内のスキーマ)でのrename操作をサポートしていません。
  • 既存のTiDBクラスタでDrainerを起動する場合は、通常、クラスタデータの完全バックアップを作成し、スナップショットタイムスタンプを取得し、データをターゲットデータベースにインポートしてから、Drainerを起動して、対応するスナップショットから増分データを複製する必要があります。タイムスタンプ
  • ダウンストリームデータベースがTiDBまたはMySQLの場合、アップストリームデータベースとダウンストリームデータベースのsql_modeが一致していることを確認してください。つまり、各SQLステートメントがアップストリームで実行され、ダウンストリームにレプリケートされる場合、 sql_modeは同じである必要があります。アップストリームとダウンストリームでそれぞれselect @@sql_mode;ステートメントを実行して、 sql_modeを比較できます。
  • DDLステートメントがアップストリームでサポートされているが、ダウンストリームと互換性がない場合、Drainerはデータの複製に失敗します。例として、ダウンストリームデータベースMySQLがInnoDBエンジンを使用する場合にCREATE TABLE t1(a INT) ROW_FORMAT=FIXED;ステートメントを複製します。この場合、Drainerでトランザクションをスキップするを構成し、ダウンストリームデータベースで互換性のあるステートメントを手動で実行できます。

このページは役に立ちましたか?