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
embulk-output-redshift does not support SUPER type.
Currently, only VARBYTE can be used to send data to Redshift.
However, VARBYTE has an upper limit of 65535 bytes, so it is not possible to migrate strings longer than that.
By supporting Redshift's SUPER type, longer strings can be migrated.
Note that the following settings can be used as a workaround, but I would like to see formal support for this.
The type of column (or column_options) in must be json <--- If this is a string, the file used by COPY was corrupted.
out's column_options must be { type: "SUPER", value_type: json } <--- If this is a string, a 65535 byte constraint error occurred.
embulk-output-redshift does not support SUPER type.
Currently, only VARBYTE can be used to send data to Redshift.
However, VARBYTE has an upper limit of 65535 bytes, so it is not possible to migrate strings longer than that.
By supporting Redshift's SUPER type, longer strings can be migrated.
Note that the following settings can be used as a workaround, but I would like to see formal support for this.
The text was updated successfully, but these errors were encountered: