在命令行中,这将成功更新 table1:
pt-table-sync --execute h=host1,D=db1,t=table1 h=host2,D=db2
但是,如果我想更新多个表,我不确定如何编写它。这也只会更新 table1 并忽略其他表:
pt-table-sync --execute h=host1,D=db1,t=table1,table2,table3 h=host2,D=db2
这给了我一个错误:
pt-table-sync --execute h=host1,D=db1 --tables table1,table2,table3 h=host2,D=db2
任何人都有一个如何列出'-tables'的例子......以便它成功更新列表中的所有表?