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
Running any operation (COPY, INSERT, UPDATE, CREATE) on latest master branch leads to a lot of the same log line being spammed:
[libprotobuf ERROR google/protobuf/wire_format_lite.cc:629] String field 'yb.PgsqlWriteRequestPB.partition_key' contains invalid UTF-8 data when serializing a protocol buffer. Use the 'bytes' type if you intend to send raw bytes.
We need to confirm if this is an issue or just spam.
Might be related to @spolitov 's recent changes to write/read operations.
The text was updated successfully, but these errors were encountered:
Summary:
partition_key was added to PgsqlWriteRequestPB in recent c5f5125/D13244 commit.
The field has type string, but it could contain arbitrary data, so bytes type should be used for it.
This diff fixes the issue by switching to bytes type.
Test Plan: Jenkins
Reviewers: dmitry
Reviewed By: dmitry
Subscribers: bogdan, ybase
Differential Revision: https://phabricator.dev.yugabyte.com/D15877
Description
Running any operation (COPY, INSERT, UPDATE, CREATE) on latest master branch leads to a lot of the same log line being spammed:
[libprotobuf ERROR google/protobuf/wire_format_lite.cc:629] String field 'yb.PgsqlWriteRequestPB.partition_key' contains invalid UTF-8 data when serializing a protocol buffer. Use the 'bytes' type if you intend to send raw bytes.
We need to confirm if this is an issue or just spam.
Might be related to @spolitov 's recent changes to write/read operations.
The text was updated successfully, but these errors were encountered: