This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 188
/
errors.toml
3162 lines (2635 loc) · 83.3 KB
/
errors.toml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[error.DM-database-10001]
message = "database driver error"
description = ""
workaround = "Please check the database connection and the database config in configuration file."
tags = ["not-set", "high"]
[error.DM-database-10002]
message = "database driver"
description = ""
workaround = "Please check the database connection, then use `pause-task` to pause the task and then use `resume-task` to resume the task."
tags = ["not-set", "high"]
[error.DM-database-10003]
message = "database driver"
description = ""
workaround = "Please check the database connection, then use `pause-task` to stop the task and then use `resume-task` to resume the task."
tags = ["not-set", "high"]
[error.DM-database-10004]
message = "unexpect database error: %s"
description = ""
workaround = ""
tags = ["not-set", "high"]
[error.DM-database-10005]
message = "query statement failed: %s"
description = ""
workaround = ""
tags = ["not-set", "high"]
[error.DM-database-10006]
message = "execute statement failed: %s"
description = ""
workaround = ""
tags = ["not-set", "high"]
[error.DM-functional-11001]
message = "parse mydumper metadata error: %s, metadata: %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11002]
message = "get file %s size"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11003]
message = "not allowed operation: drop multiple tables in one statement"
description = ""
workaround = "It is recommended to include only one DDL operation in a statement executed upstream. Please manually handle it using dmctl (skipping the DDL statement or replacing the DDL statement with a specified DDL statement). For details, see https://docs.pingcap.com/tidb-data-migration/stable/handle-failed-sql-statements"
tags = ["internal", "high"]
[error.DM-functional-11004]
message = "not allowed operation: rename multiple tables in one statement"
description = ""
workaround = "It is recommended to include only one DDL operation in a statement executed upstream. Please manually handle it using dmctl (skipping the DDL statement or replacing the DDL statement with a specified DDL statement). For details, see https://docs.pingcap.com/tidb-data-migration/stable/handle-failed-sql-statements"
tags = ["internal", "high"]
[error.DM-functional-11005]
message = "not allowed operation: alter multiple tables in one statement"
description = ""
workaround = "It is recommended to include only one DDL operation in a statement executed upstream. Please manually handle it using dmctl (skipping the DDL statement or replacing the DDL statement with a specified DDL statement). For details, see https://docs.pingcap.com/tidb-data-migration/stable/handle-failed-sql-statements"
tags = ["internal", "high"]
[error.DM-functional-11006]
message = "parse statement: %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11007]
message = "unknown type ddl %+v"
description = ""
workaround = "Please manually handle it using dmctl (skipping the DDL statement or replacing the DDL statement with a specified DDL statement). For details, see https://docs.pingcap.com/tidb-data-migration/stable/handle-failed-sql-statements"
tags = ["internal", "high"]
[error.DM-functional-11008]
message = "restore ast node"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11009]
message = "parse GTID %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11010]
message = "flavor %s not supported"
description = ""
workaround = "Please check `flavor` config in source configuration file."
tags = ["internal", "high"]
[error.DM-functional-11011]
message = "%s is not mysql GTID set"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11012]
message = "%s is not mariadb GTID set"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11013]
message = "%v is not UUID string"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11014]
message = "%v is not uint32"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11015]
message = "invalid server id %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11016]
message = "get sql mode from string literal %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11017]
message = ""
description = ""
workaround = "Please make sure the args are correct."
tags = ["internal", "low"]
[error.DM-functional-11018]
message = "get file statfs"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11019]
message = "binlog reader is already running"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11020]
message = "stage %s, expect %s, already started"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11021]
message = "stage %s, expect %s, can not close"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11022]
message = "stage %s, expect %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11023]
message = "empty relay dir"
description = ""
workaround = "Please check `relay-dir` config in task configuration file."
tags = ["internal", "high"]
[error.DM-functional-11024]
message = "read dir: %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11025]
message = "base file %s in directory %s not found"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11026]
message = "cmp condition %v not supported"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11027]
message = "binlog file %s not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11028]
message = "binlog files in dir %s not found"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11029]
message = "get stat for relay log %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11030]
message = "add watch for relay log dir %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11031]
message = "watcher starts for relay log dir %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11032]
message = "watcher's %s chan for relay log dir %s closed"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11033]
message = "watcher receives error, relay log dir %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11034]
message = "file size of relay log %s become smaller"
description = ""
workaround = "Please check the status of relay log and re-pull it. If you want to re-pull it, you should open relay.meta, set the binlog-name to the error pos name, set binlog-pos to 4, delete the stashed relay log and run `resume-relay` in dmctl."
tags = ["internal", "high"]
[error.DM-functional-11035]
message = "binlog file must be specified"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11036]
message = "no relay log files in dir %s match pos %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11037]
message = "the first relay log %s not match the start pos %v"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11038]
message = "parse relay log file %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11039]
message = "parse for previous sub relay directory finished, but no next sub directory need to switch"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11040]
message = "Last sync error or closed, try sync and get event again"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11041]
message = "Sync was closed"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11042]
message = "table name %s not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11043]
message = "generate table router"
description = ""
workaround = "Please check `routes` config in task configuration file."
tags = ["internal", "high"]
[error.DM-functional-11044]
message = "key size should be 16, 24 or 32, but input key's size is %d"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11045]
message = "generate cipher"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11046]
message = "generate iv"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11047]
message = "ciphertext's length should be greater than %d, but got %d not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11048]
message = "ciphertext's content not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11049]
message = "invalid mysql position string: %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11050]
message = "decode base64 encoded password %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11051]
message = ""
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11052]
message = ""
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11053]
message = "header length should be %d, but got %d not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11054]
message = "decode % X"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11055]
message = "empty next binlog name not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11056]
message = ""
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11057]
message = "empty GTID set not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11058]
message = "GTID set %s with flavor %s not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11059]
message = "GTID set string %s for MySQL not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11060]
message = "GTID set string %s for MariaDB not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11061]
message = "server_id mismatch, in GTID (%d), in event header/server_id (%d)"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11062]
message = "only one GTID in set is supported, but got %d (%s)"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11063]
message = "only one Interval in UUIDSet is supported, but got %d (%s)"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11064]
message = "Interval's Stop should equal to Start+1, but got %+v (%s)"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11065]
message = "empty query not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11066]
message = "empty schema (% X) or table (% X) or column type (% X)"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11067]
message = "expect FormatDescriptionEvent, but got %+v"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11068]
message = "expect TableMapEvent, but got %+v"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11069]
message = "expect event with type (%d), but got %+v"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11070]
message = "unexpected event %+v"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11071]
message = ""
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11072]
message = "event type %d not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11073]
message = "no rows not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11074]
message = "no columns not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11075]
message = "length of row (%d) not equal to length of column-type (%d)"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11076]
message = "column type %d in binlog not supported"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11077]
message = "go-mysql type %d in event generator not supported"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11078]
message = "value %+v (type %v) with column type %v not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11079]
message = "required dummy event size (%d) is too small, the minimum supported size is %d"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11080]
message = "flavor %s not supported"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11081]
message = "empty data not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11082]
message = "latest GTID %s is not one of the latest previousGTIDs %s not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11083]
message = "read from file by GTID not supported"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11084]
message = "stage %s, expect %s, already started"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11085]
message = "stage %s, expect %s, can not close"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11086]
message = "stage %s, expect %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11087]
message = "open file"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11088]
message = "get stat for %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11089]
message = "data length %d"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11090]
message = "file %s not opened"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11091]
message = "sync file"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11092]
message = "the event should be a PreviousGTIDsEvent in go-mysql, but got %T"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11093]
message = "decode from % X"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11094]
message = "the event should be a MariadbGTIDListEvent, but got %T"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11095]
message = "parse MariaDB GTID set"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11096]
message = "add set %v to GTID set"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11097]
message = "invalid event data for type: %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11098]
message = "upload event"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11099]
message = "invalid event type %s, will not process"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11100]
message = "failed to get code information from runtime.Caller"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11101]
message = "calc data checksum"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11102]
message = "get tso"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11103]
message = "backoff argument %s value %v not valid"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-functional-11104]
message = "init logger failed"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-functional-11105]
message = "truncate GTID sets %v to %v not valid"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11106]
message = "the given relay log pos %s of meta config is too big, please check it again"
description = ""
workaround = "If the size of the corresponding binlog file has exceeded 4GB, please follow the solution in https://docs.pingcap.com/tidb-data-migration/stable/error-handling#the-relay-unit-throws-error-event-from--in--diff-from-passed-in-event--or-a-replication-task-is-interrupted-with-failing-to-get-or-parse-binlog-errors-like-get-binlog-error-error-1236-hy000-and-binlog-checksum-mismatch-data-may-be-corrupted-returned"
tags = ["internal", "high"]
[error.DM-functional-11107]
message = "fail to campaign leader: %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11108]
message = "fail to get leader ID"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-functional-11109]
message = "invalid binlog filename with uuid suffix %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11110]
message = "fail to decode etcd key: %s"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-functional-11111]
message = "fail to try sync the optimistic shard ddl lock %s: %s"
description = ""
workaround = "Please use `show-ddl-locks` command for more details."
tags = ["internal", "medium"]
[error.DM-functional-11112]
message = "invalid TLS config"
description = ""
workaround = "Please check the `ssl-ca`, `ssl-cert` and `ssl-key` config."
tags = ["internal", "medium"]
[error.DM-functional-11113]
message = "fail to registry TLS config"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-functional-11114]
message = "fail to operate DM cluster version in etcd"
description = ""
workaround = "Please use `list-member --master` to confirm whether the DM-master cluster is healthy"
tags = ["internal", "high"]
[error.DM-functional-11115]
message = "%s is an invalid v1.0.x DM-worker meta path"
description = ""
workaround = "Please check no `meta-dir` set for v1.0.x DM-worker."
tags = ["internal", "medium"]
[error.DM-functional-11116]
message = "fail to upgrade v1.0.x DB schema"
description = ""
workaround = "Please confirm that you have not violated any restrictions in the upgrade documentation."
tags = ["internal", "medium"]
[error.DM-functional-11117]
message = "fail to parse binglog status_vars: %v, offset: %d"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-functional-11118]
message = ""
description = ""
workaround = "Please make sure the args are correct."
tags = ["internal", "low"]
[error.DM-functional-11119]
message = "failed to rewrite SQL for target DB, stmt: %+v, targetTableNames: %+v"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11120]
message = "no relay subdir match gtid %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11121]
message = "no relay pos match gtid %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11122]
message = ""
description = ""
workaround = ""
tags = ["internal", "low"]
[error.DM-functional-11123]
message = "didn't found binlog location in dumped metadata file %s"
description = ""
workaround = "Please check log of dump unit, there maybe errors when read upstream binlog status"
tags = ["upstream", "low"]
[error.DM-functional-11124]
message = "no previous gtid event from binlog %s"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-functional-11125]
message = "upstream returns an empty result for SHOW MASTER STATUS"
description = ""
workaround = "Please check the upstream settings like privileges, RDS settings to read data from SHOW MASTER STATUS."
tags = ["upstream", "medium"]
[error.DM-binlog-op-11126]
message = "upstream didn't log enough columns in binlog"
description = ""
workaround = "Please check if session `binlog_row_image` variable is not FULL, restart task to the location from where FULL binlog_row_image is used."
tags = ["upstream", "high"]
[error.DM-config-20001]
message = "checking item %s is not supported\n%s"
description = ""
workaround = "Please check `ignore-checking-items` config in task configuration file, which can be set including `all`/`dump_privilege`/`replication_privilege`/`version`/`binlog_enable`/`binlog_format`/`binlog_row_image`/`table_schema`/`schema_of_shard_tables`/`auto_increment_ID`."
tags = ["internal", "medium"]
[error.DM-config-20002]
message = "%s"
description = ""
workaround = "Please check the configuration file has correct TOML format."
tags = ["internal", "medium"]
[error.DM-config-20003]
message = "%s"
description = ""
workaround = "Please check the configuration file has correct YAML format."
tags = ["internal", "medium"]
[error.DM-config-20004]
message = "task name should not be empty"
description = ""
workaround = "Please check the `name` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20005]
message = "empty source-id not valid"
description = ""
workaround = "Please check the `source-id` config in configuration file."
tags = ["internal", "medium"]
[error.DM-config-20006]
message = "too long source-id not valid"
description = ""
workaround = "Please check the `source-id` config in configuration file. The max source id length is 32."
tags = ["internal", "medium"]
[error.DM-config-20007]
message = "online scheme %s not supported"
description = ""
workaround = "Please check the `online-ddl-scheme` config in task configuration file. Only `ghost` and `pt` are currently supported."
tags = ["internal", "medium"]
[error.DM-config-20008]
message = "invalid timezone string: %s"
description = ""
workaround = "Please check the `timezone` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20009]
message = "parse subtask config flag set"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-config-20010]
message = "decrypt DB password %s failed"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-config-20011]
message = "must specify `binlog-name` without GTID enabled for the source or specify `binlog-gtid` with GTID enabled for the source"
description = ""
workaround = "Please check the `meta` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20012]
message = "mysql instance config must specify"
description = ""
workaround = "Please check the `mysql-instances` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20013]
message = "must specify at least one mysql-instances"
description = ""
workaround = "Please check the `mysql-instances` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20014]
message = "mysql-instance (%d) and (%d) have same source-id (%s)"
description = ""
workaround = "Please check the `mysql-instances` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20015]
message = "mydumper-config-name and mydumper should only specify one"
description = ""
workaround = "Please check the `mydumper-config-name` and `mydumper` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20016]
message = "loader-config-name and loader should only specify one"
description = ""
workaround = "Please check the `loader-config-name` and `loader` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20017]
message = "syncer-config-name and syncer should only specify one"
description = ""
workaround = "Please check the `syncer-config-name` and `syncer` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20018]
message = "read config file %v"
description = ""
workaround = ""
tags = ["internal", "medium"]
[error.DM-config-20019]
message = "must specify a unique task name"
description = ""
workaround = "Please check the `name` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20020]
message = "please specify right task-mode, support `full`, `incremental`, `all`"
description = ""
workaround = "Please check the `task-mode` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20021]
message = "must specify target-database"
description = ""
workaround = "Please check the `target-database` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20022]
message = "mysql-instance(%d) must set meta for task-mode %s"
description = ""
workaround = "Please check the `meta` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20023]
message = "mysql-instance(%d)'s route-rules %s not exist in routes"
description = ""
workaround = "Please check the `route-rules` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20024]
message = "mysql-instance(%d)'s filter-rules %s not exist in filters"
description = ""
workaround = "Please check the `filter-rules` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20025]
message = "mysql-instance(%d)'s column-mapping-rules %s not exist in column-mapping"
description = ""
workaround = "Please check the `column-mapping-rules` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20026]
message = "mysql-instance(%d)'s list %s not exist in block allow list"
description = ""
workaround = "Please check the `block-allow-list` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20027]
message = "mysql-instance(%d)'s mydumper config %s not exist in mydumpers"
description = ""
workaround = "Please check the `mydumper-config-name` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20028]
message = "mysql-instance(%d)'s mydumper-path must specify a valid path to mydumper binary when task-mode is all or full"
description = ""
workaround = "Please check the `mydumper-path` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20029]
message = "mysql-instance(%d)'s loader config %s not exist in loaders"
description = ""
workaround = "Please check the `loader-config-name` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20030]
message = "mysql-instance(%d)'s syncer config %s not exist in syncer"
description = ""
workaround = "Please check the `syncer-config-name` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20031]
message = "source %s in deployment configuration not found"
description = ""
workaround = "Please use `operate-source create source-config-file-path` to add source."
tags = ["internal", "medium"]
[error.DM-config-20032]
message = "the following mysql configs have duplicate items, please remove the duplicates:\n%s"
description = ""
workaround = "Please check the `mysql-instances` config in task configuration file."
tags = ["internal", "medium"]
[error.DM-config-20033]
message = "shard mode %s not supported"
description = ""
workaround = "Please check the `shard-mode` config in task configuration file, which can be set to `pessimistic`/`optimistic`."
tags = ["internal", "medium"]
[error.DM-config-20034]
message = "found %d %s for %s which should <= 1"
description = ""
workaround = ""
tags = ["internal", "high"]
[error.DM-config-20035]
message = "incapable config of %s from etcd"
description = ""
workaround = ""