You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible for vreplication's controller to hit an unrecoverable error, e.g. attempting to write an invalid data type / value to the target table. So far so good. The controller logs the error and also attempts to persist it in _vt.vreplication.message:
returnnil// this will cause vreplicate to quit the workflow
}
The persisting action itself can fail, which is still accounted for in the above. However, there is no clear indication that the action failed. The controller does return an error, but the message column is still populated with whatever previous value it contained (e.g. Picked source tablet...).
The text was updated successfully, but these errors were encountered:
Overview of the Issue
It's possible for
vreplication
'scontroller
to hit an unrecoverable error, e.g. attempting to write an invalid data type / value to the target table. So far so good. The controller logs the error and also attempts to persist it in_vt.vreplication.message
:vitess/go/vt/vttablet/tabletmanager/vreplication/controller.go
Lines 271 to 277 in 0babfe2
The persisting action itself can fail, which is still accounted for in the above. However, there is no clear indication that the action failed. The
controller
does return an error, but themessage
column is still populated with whatever previous value it contained (e.g.Picked source tablet...
).The text was updated successfully, but these errors were encountered: