forked from pingcap/tiflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.toml
executable file
·1093 lines (874 loc) · 18.1 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
# AUTOGENERATED BY github.com/pingcap/errors/errdoc-gen
# YOU CAN CHANGE THE 'description'/'workaround' FIELDS IF THEM ARE IMPROPER.
["CDC:ErrAPIInvalidParam"]
error = '''
invalid api parameter
'''
["CDC:ErrActorDuplicate"]
error = '''
duplicated actor, already in use
'''
["CDC:ErrActorNotFound"]
error = '''
actor not found
'''
["CDC:ErrActorStopped"]
error = '''
actor stopped
'''
["CDC:ErrAdminStopProcessor"]
error = '''
stop processor by admin command
'''
["CDC:ErrAsyncBroadcastNotSupport"]
error = '''
Async broadcasts not supported
'''
["CDC:ErrAsyncIOCancelled"]
error = '''
asynchronous IO operation is cancelled. Internal use only, report a bug if seen in log
'''
["CDC:ErrAsyncPoolExited"]
error = '''
asyncPool has exited. Report a bug if seen externally.
'''
["CDC:ErrAvroEncodeFailed"]
error = '''
encode to avro native data
'''
["CDC:ErrAvroEncodeToBinary"]
error = '''
encode to binray from native
'''
["CDC:ErrAvroMarshalFailed"]
error = '''
json marshal failed
'''
["CDC:ErrAvroSchemaAPIError"]
error = '''
schema manager API error
'''
["CDC:ErrAvroToEnvelopeError"]
error = '''
to envelope failed
'''
["CDC:ErrAvroUnknownType"]
error = '''
unknown type for Avro: %v
'''
["CDC:ErrBufferLogTimeout"]
error = '''
send row changed events to log buffer timeout
'''
["CDC:ErrBufferReachLimit"]
error = '''
puller mem buffer reach size limit
'''
["CDC:ErrCachedTSONotExists"]
error = '''
GetCachedCurrentVersion: cache entry does not exist
'''
["CDC:ErrCanalDecodeFailed"]
error = '''
canal decode failed
'''
["CDC:ErrCanalEncodeFailed"]
error = '''
canal encode failed
'''
["CDC:ErrCaptureCampaignOwner"]
error = '''
campaign owner failed
'''
["CDC:ErrCaptureNotExist"]
error = '''
capture not exists, key: %s
'''
["CDC:ErrCaptureRegister"]
error = '''
capture register to etcd failed
'''
["CDC:ErrCaptureResignOwner"]
error = '''
resign owner failed
'''
["CDC:ErrCaptureSuicide"]
error = '''
capture suicide
'''
["CDC:ErrChangeFeedAlreadyExists"]
error = '''
changefeed already exists, key: %s
'''
["CDC:ErrChangeFeedNotExists"]
error = '''
changefeed not exists, key: %s
'''
["CDC:ErrChangefeedAbnormalState"]
error = '''
changefeed in abnormal state: %s, replication status: %+v
'''
["CDC:ErrChangefeedUpdateRefused"]
error = '''
changefeed update error: %s
'''
["CDC:ErrCheckClusterVersionFromPD"]
error = '''
failed to request PD %s, please try again later
'''
["CDC:ErrCheckDataDirSatisfied"]
error = '''
check data dir satisfied failed
'''
["CDC:ErrCheckDirReadable"]
error = '''
check dir readable failed
'''
["CDC:ErrCheckDirValid"]
error = '''
check dir valid failed
'''
["CDC:ErrCheckDirWritable"]
error = '''
check dir writable failed
'''
["CDC:ErrClusterIDMismatch"]
error = '''
cluster ID mismatch, tikv cluster ID is %d and request cluster ID is %d
'''
["CDC:ErrCodecDecode"]
error = '''
codec decode error
'''
["CDC:ErrConsistentLevel"]
error = '''
consistent level (%s) not support
'''
["CDC:ErrConsistentStorage"]
error = '''
consistent storage (%s) not support
'''
["CDC:ErrCraftCodecInvalidData"]
error = '''
craft codec invalid data
'''
["CDC:ErrCreateMarkTableFailed"]
error = '''
create mark table failed
'''
["CDC:ErrDDLEventIgnored"]
error = '''
ddl event is ignored
'''
["CDC:ErrDatumUnflatten"]
error = '''
unflatten datume data
'''
["CDC:ErrDecodeFailed"]
error = '''
decode failed: %s
'''
["CDC:ErrDecodeRowToDatum"]
error = '''
decode row data to datum failed
'''
["CDC:ErrEncodeFailed"]
error = '''
encode failed: %s
'''
["CDC:ErrEtcdIgnore"]
error = '''
this patch should be excluded from the current etcd txn
'''
["CDC:ErrEtcdSessionDone"]
error = '''
the etcd session is done
'''
["CDC:ErrEtcdTryAgain"]
error = '''
the etcd txn should be aborted and retried immediately
'''
["CDC:ErrEtcdTxnOpsExceed"]
error = '''
patch ops:%d of a single changefeed exceed etcd txn max ops:%d
'''
["CDC:ErrEtcdTxnSizeExceed"]
error = '''
patch size:%d of a single changefeed exceed etcd txn max size:%d
'''
["CDC:ErrEventFeedAborted"]
error = '''
single event feed aborted
'''
["CDC:ErrEventFeedEventError"]
error = '''
eventfeed returns event error
'''
["CDC:ErrExecDDLFailed"]
error = '''
exec DDL failed
'''
["CDC:ErrFetchHandleValue"]
error = '''
can't find handle column, please check if the pk is handle
'''
["CDC:ErrFileSizeExceed"]
error = '''
rawData size %d exceeds maximum file size %d
'''
["CDC:ErrFilterRuleInvalid"]
error = '''
filter rule is invalid
'''
["CDC:ErrFlowControllerAborted"]
error = '''
flow controller is aborted
'''
["CDC:ErrFlowControllerEventLargerThanQuota"]
error = '''
event is larger than the total memory quota, size: %d, quota: %d
'''
["CDC:ErrGCTTLExceeded"]
error = '''
the checkpoint-ts(%d) lag of the changefeed(%s) has exceeded the GC TTL
'''
["CDC:ErrGRPCDialFailed"]
error = '''
grpc dial failed
'''
["CDC:ErrGetAllStoresFailed"]
error = '''
get stores from pd failed
'''
["CDC:ErrGetDiskInfo"]
error = '''
get dir disk info failed
'''
["CDC:ErrGetRegionFailed"]
error = '''
get region failed
'''
["CDC:ErrGetStoreSnapshot"]
error = '''
get snapshot failed
'''
["CDC:ErrGetTiKVRPCContext"]
error = '''
get tikv grpc context failed
'''
["CDC:ErrIllegalSorterParameter"]
error = '''
illegal parameter for sorter: %s
'''
["CDC:ErrIndexKeyTableNotFound"]
error = '''
table not found with index ID %d in index kv
'''
["CDC:ErrInternalServerError"]
error = '''
internal server error
'''
["CDC:ErrIntersectNoOverlap"]
error = '''
span doesn't overlap: %+v vs %+v
'''
["CDC:ErrInvalidAdminJobType"]
error = '''
invalid admin job type: %d
'''
["CDC:ErrInvalidChangefeedID"]
error = '''
bad changefeed id, please match the pattern "^[a-zA-Z0-9]+(\-[a-zA-Z0-9]+)*$, the length should no more than %d", eg, "simple-changefeed-task"
'''
["CDC:ErrInvalidDDLJob"]
error = '''
invalid ddl job(%d)
'''
["CDC:ErrInvalidEtcdKey"]
error = '''
invalid key: %s
'''
["CDC:ErrInvalidHost"]
error = '''
host must be a URL or a host:port pair: %q
'''
["CDC:ErrInvalidRecordKey"]
error = '''
invalid record key - %q
'''
["CDC:ErrInvalidS3URI"]
error = '''
invalid s3 uri: %s
'''
["CDC:ErrInvalidServerOption"]
error = '''
invalid server option
'''
["CDC:ErrInvalidTaskKey"]
error = '''
invalid task key: %s
'''
["CDC:ErrJSONCodecInvalidData"]
error = '''
json codec invalid data
'''
["CDC:ErrJSONCodecRowTooLarge"]
error = '''
json codec single row too large
'''
["CDC:ErrKVStorageBackoffFailed"]
error = '''
backoff failed
'''
["CDC:ErrKVStorageRegionError"]
error = '''
req with region error
'''
["CDC:ErrKVStorageRespEmpty"]
error = '''
tikv response body missing
'''
["CDC:ErrKVStorageSendReq"]
error = '''
send req to kv storage
'''
["CDC:ErrKafkaAsyncSendMessage"]
error = '''
kafka async send message failed
'''
["CDC:ErrKafkaFlushUnfinished"]
error = '''
flush not finished before producer close
'''
["CDC:ErrKafkaInvalidClientID"]
error = '''
invalid kafka client ID '%s'
'''
["CDC:ErrKafkaInvalidConfig"]
error = '''
kafka config invalid
'''
["CDC:ErrKafkaInvalidPartitionNum"]
error = '''
invalid partition num %d
'''
["CDC:ErrKafkaInvalidVersion"]
error = '''
invalid kafka version
'''
["CDC:ErrKafkaNewSaramaProducer"]
error = '''
new sarama producer
'''
["CDC:ErrKafkaSendMessage"]
error = '''
kafka send message failed
'''
["CDC:ErrLeaseExpired"]
error = '''
owner lease expired
'''
["CDC:ErrLeaseTimeout"]
error = '''
owner lease timeout
'''
["CDC:ErrLevelDBSorterError"]
error = '''
leveldb error: %s
'''
["CDC:ErrLoadTimezone"]
error = '''
load timezone
'''
["CDC:ErrLocateRegion"]
error = '''
locate region by id
'''
["CDC:ErrMQSinkUnknownProtocol"]
error = '''
unknown '%s' protocol for Message Queue sink
'''
["CDC:ErrMailboxFull"]
error = '''
mailbox is full, please try again. Internal use only, report a bug if seen externally
'''
["CDC:ErrMarshalFailed"]
error = '''
marshal failed
'''
["CDC:ErrMaxwellDecodeFailed"]
error = '''
maxwell decode failed
'''
["CDC:ErrMaxwellEncodeFailed"]
error = '''
maxwell encode failed
'''
["CDC:ErrMaxwellInvalidData"]
error = '''
maxwell invalid data
'''
["CDC:ErrMetaListDatabases"]
error = '''
meta store list databases
'''
["CDC:ErrMetaNotInRegion"]
error = '''
meta not exists in region
'''
["CDC:ErrMySQLConnectionError"]
error = '''
MySQL connection error
'''
["CDC:ErrMySQLInvalidConfig"]
error = '''
MySQL config invalid
'''
["CDC:ErrMySQLQueryError"]
error = '''
MySQL query error
'''
["CDC:ErrMySQLTxnError"]
error = '''
MySQL txn error
'''
["CDC:ErrMySQLWorkerPanic"]
error = '''
MySQL worker panic
'''
["CDC:ErrNewCaptureFailed"]
error = '''
new capture failed
'''
["CDC:ErrNewProcessorFailed"]
error = '''
new processor failed
'''
["CDC:ErrNewSemVersion"]
error = '''
create sem version
'''
["CDC:ErrNewStore"]
error = '''
new store failed
'''
["CDC:ErrNoPendingRegion"]
error = '''
received event regionID %v, requestID %v from %v, but neither pending region nor running region was found
'''
["CDC:ErrNotOwner"]
error = '''
this capture is not a owner
'''
["CDC:ErrOldValueNotEnabled"]
error = '''
old value is not enabled
'''
["CDC:ErrOperateOnClosedNotifier"]
error = '''
operate on a closed notifier
'''
["CDC:ErrOwnerCampaignKeyDeleted"]
error = '''
owner campaign key deleted
'''
["CDC:ErrOwnerChangedUnexpectedly"]
error = '''
owner changed unexpectedly
'''
["CDC:ErrOwnerChangefeedNotFound"]
error = '''
changefeed %s not found in owner cache
'''
["CDC:ErrOwnerEtcdWatch"]
error = '''
etcd watch returns error
'''
["CDC:ErrOwnerInconsistentStates"]
error = '''
owner encountered inconsistent state. report a bug if this happens frequently. %s
'''
["CDC:ErrOwnerNotFound"]
error = '''
owner not found
'''
["CDC:ErrOwnerSortDir"]
error = '''
owner sort dir
'''
["CDC:ErrOwnerUnknown"]
error = '''
owner running unknown error
'''
["CDC:ErrPDBatchLoadRegions"]
error = '''
pd batch load regions failed
'''
["CDC:ErrPDEtcdAPIError"]
error = '''
etcd api call error
'''
["CDC:ErrPeerMessageClientClosed"]
error = '''
peer-to-peer message client has been closed
'''
["CDC:ErrPeerMessageClientPermanentFail"]
error = '''
peer-to-peer message client has failed permanently, no need to reconnect: %s
'''
["CDC:ErrPeerMessageDataLost"]
error = '''
peer-to-peer message data lost, topic: %s, seq: %s
'''
["CDC:ErrPeerMessageDecodeError"]
error = '''
failed to decode peer-to-peer message
'''
["CDC:ErrPeerMessageDuplicateConnection"]
error = '''
peer-to-peer message duplicate connection: epoch %d
'''
["CDC:ErrPeerMessageEncodeError"]
error = '''
failed to encode peer-to-peer message
'''
["CDC:ErrPeerMessageIllegalClientVersion"]
error = '''
peer-to-peer message client reported illegal version: %s
'''
["CDC:ErrPeerMessageIllegalMeta"]
error = '''
peer-to-peer message server received an RPC call with illegal metadata
'''
["CDC:ErrPeerMessageInjectedServerRestart"]
error = '''
peer-to-peer message server injected error
'''
["CDC:ErrPeerMessageInternalSenderClosed"]
error = '''
peer-to-peer message server tries to send to a closed stream. Internal only.
'''
["CDC:ErrPeerMessageReceiverMismatch"]
error = '''
peer-to-peer message receiver is a mismatch: expected %s, got %s
'''
["CDC:ErrPeerMessageSendTryAgain"]
error = '''
peer-to-peer message client has too many pending messages to send, try again later
'''
["CDC:ErrPeerMessageServerClosed"]
error = '''
peer-to-peer message server has closed connection: %s.
'''
["CDC:ErrPeerMessageStaleConnection"]
error = '''
peer-to-peer message stale connection: old-epoch %d, new-epoch %d
'''
["CDC:ErrPeerMessageTaskQueueCongested"]
error = '''
peer-to-peer message server has too many pending tasks
'''
["CDC:ErrPeerMessageToManyPeers"]
error = '''
peer-to-peer message server got too many peers: %d peers
'''
["CDC:ErrPeerMessageTopicCongested"]
error = '''
peer-to-peer message topic has congested, aborting all connections
'''
["CDC:ErrPendingRegionCancel"]
error = '''
pending region cancelled due to stream disconnecting
'''
["CDC:ErrPipelineTryAgain"]
error = '''
pipeline is full, please try again. Internal use only, report a bug if seen externally
'''
["CDC:ErrPrepareAvroFailed"]
error = '''
prepare avro failed
'''
["CDC:ErrPrewriteNotMatch"]
error = '''
prewrite not match, key: %s, start-ts: %d, commit-ts: %d, type: %s, optype: %s
'''
["CDC:ErrProcessorDuplicateOperations"]
error = '''
table processor duplicate operation, table-id: %d
'''
["CDC:ErrProcessorEtcdWatch"]
error = '''
etcd watch returns error
'''
["CDC:ErrProcessorSortDir"]
error = '''
sort dir error
'''
["CDC:ErrProcessorTableNotFound"]
error = '''
table not found in processor cache
'''
["CDC:ErrProcessorUnknown"]
error = '''
processor running unknown error
'''
["CDC:ErrPulsarNewProducer"]
error = '''
new pulsar producer
'''
["CDC:ErrPulsarSendMessage"]
error = '''
pulsar send message failed
'''
["CDC:ErrReachMaxTry"]
error = '''
reach maximum try: %d
'''
["CDC:ErrReactorFinished"]
error = '''
the reactor has done its job and should no longer be executed
'''
["CDC:ErrRedoConfigInvalid"]
error = '''
redo log config invalid
'''
["CDC:ErrRedoDownloadFailed"]
error = '''
redo log down load to local failed
'''
["CDC:ErrRedoFileOp"]
error = '''
redo file operation
'''
["CDC:ErrRedoMetaFileNotFound"]
error = '''
no redo meta file found in dir: %s
'''
["CDC:ErrRedoMetaInitialize"]
error = '''
initialize meta for redo log
'''
["CDC:ErrRedoWriterStopped"]
error = '''
redo log writer stopped
'''
["CDC:ErrRegionWorkerExit"]
error = '''
region worker exited
'''
["CDC:ErrRegionsNotCoverSpan"]
error = '''
regions not completely left cover span, span %v regions: %v
'''
["CDC:ErrResolveLocks"]
error = '''
resolve locks failed
'''
["CDC:ErrRewindRequestBodyError"]
error = '''
failed to seek to the beginning of request body
'''
["CDC:ErrS3StorageAPI"]
error = '''
s3 storage api
'''
["CDC:ErrS3StorageInitialize"]
error = '''
new s3 storage for redo log
'''
["CDC:ErrScanLockFailed"]
error = '''
scan lock failed
'''
["CDC:ErrSchemaSnapshotNotFound"]
error = '''
can not found schema snapshot, ts: %d
'''
["CDC:ErrSchemaStorageGCed"]
error = '''
can not found schema snapshot, the specified ts(%d) is less than gcTS(%d)
'''
["CDC:ErrSchemaStorageTableMiss"]
error = '''
table %d not found
'''
["CDC:ErrSchemaStorageUnresolved"]
error = '''
can not found schema snapshot, the specified ts(%d) is more than resolvedTs(%d)
'''
["CDC:ErrSendToClosedPipeline"]
error = '''
pipeline is closed, cannot send message
'''
["CDC:ErrServeHTTP"]
error = '''
serve http error
'''
["CDC:ErrServerNewPDClient"]
error = '''
server creates pd client failed
'''
["CDC:ErrServiceSafepointLost"]
error = '''
service safepoint lost. current safepoint is %d, please remove all changefeed(s) whose checkpoints are behind the current safepoint
'''
["CDC:ErrSinkInvalidConfig"]
error = '''
sink config invalid
'''
["CDC:ErrSinkURIInvalid"]
error = '''
sink uri invalid
'''
["CDC:ErrSnapshotLostByGC"]
error = '''
fail to create or maintain changefeed due to snapshot loss caused by GC. checkpoint-ts %d is earlier than or equal to GC safepoint at %d
'''
["CDC:ErrSnapshotSchemaExists"]
error = '''
schema %s(%d) already exists
'''
["CDC:ErrSnapshotSchemaNotFound"]
error = '''
schema %d not found in schema snapshot
'''
["CDC:ErrSnapshotTableExists"]
error = '''
table %s.%s already exists
'''
["CDC:ErrSnapshotTableNotFound"]
error = '''
table %d not found in schema snapshot
'''
["CDC:ErrSorterClosed"]
error = '''
sorter is closed
'''
["CDC:ErrStartAStoppedLevelDBSystem"]
error = '''
start a stopped leveldb system
'''
["CDC:ErrStartTsBeforeGC"]
error = '''
fail to create changefeed because start-ts %d is earlier than GC safepoint at %d
'''
["CDC:ErrSupportGetOnly"]
error = '''
this api supports GET method only
'''
["CDC:ErrSupportPostOnly"]
error = '''
this api supports POST method only
'''
["CDC:ErrTCPServerClosed"]
error = '''
The TCP server has been closed
'''
["CDC:ErrTableIneligible"]
error = '''
some tables are not eligible to replicate(%v), if you want to ignore these tables, please set ignore_ineligible_table to true
'''
["CDC:ErrTableListenReplicated"]
error = '''
A table(%d) is being replicated by at least two processors(%s, %s), please report a bug
'''
["CDC:ErrTableProcessorStoppedSafely"]
error = '''
table processor stopped safely
'''
["CDC:ErrTargetTsBeforeStartTs"]
error = '''
fail to create changefeed because target-ts %d is earlier than start-ts %d
'''
["CDC:ErrTaskPositionNotExists"]
error = '''
task position not exists, key: %s
'''
["CDC:ErrTaskStatusNotExists"]
error = '''
task status not exists, key: %s
'''
["CDC:ErrTiKVEventFeed"]
error = '''
tikv event feed failed
'''
["CDC:ErrToTLSConfigFailed"]
error = '''
generate tls config failed
'''
["CDC:ErrURLFormatInvalid"]
error = '''