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
@okkez As a summary, it was caused by mismatched types. __fluentd_address__ and __fluentd_host__ field values are actually encoded as bytes type in msgpack. So once you modify avro schema, then it should work fine. And also I think columnify must handle given schema is correct and convert records if necessary, in this case bytes -> string.
These values have 0xc4 as a first byte in the msgpack message.
So you can make it working correctly by modifying these schema for now. Additionally I believe columnify should handle schema more correctly ( ref. #27 ) e.g. to report schema mismatching errors to users appropriately and convert value types in records if possible. Current implementation relies it to parquet-go but that doesn't provide us helpful error causes.
I want to use msgpack format with fluent-plugin-s3
<format>
section.But I cannot see
*parquet
files on S3.I can create a small reproducible case for this issue.
single.msgpack.log
I use the following Avro schema definition:
The text was updated successfully, but these errors were encountered: