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
MySQLEvents.EVENTS.ZONGJI_ERROR: 2021-01-21T05:39:59.450Z RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >= 0 and <= 63089. Received 63096
#34
we had to skip up / passed this / fast forward when starting
we used a drop function by timestamp.
const insertTrigger = {
name: "Monitor database instance",
expression: dbFilterExpression,
statement: MySQLEvents.STATEMENTS.INSERT,
onEvent: async (event) => {
// You will receive the events here
// console.log(event);
// console.log(event.affectedRows);
let row = event.affectedRows[0];
let xid = row.after.id;
let timestamp = event.timestamp;
if (timestamp >= lastTimeStamp) {
let table = event.table;
let data = { event: event, xid: xid };
do stuff....
we turned on aws / rds proxy - now we get this error....
The text was updated successfully, but these errors were encountered: