columnify
columnify copied to clipboard
Make record oriented data to columnar format.
2023-05-22 14:08:44 +0000 [error]: config error file="/etc/td-agent/td-agent.conf" error_class=Fluent::ConfigError error="'columnify' utility must be in PATH for -h compression" # which columnify /root/go/bin/columnify # columnify -h Usage of columnify: columnify [-flags] [input...
I am working on converting JSONL log files to Parquet format to improve log search capabilities. To achieve this, I've been exploring tools compatible with Fluentd, and I came across...
Bumps [github.com/xitongsys/parquet-go](https://github.com/xitongsys/parquet-go) from 1.5.3 to 1.6.2. Release notes Sourced from github.com/xitongsys/parquet-go's releases. v1.6.2 No release notes provided. v1.6.1 fix some bugs v1.6.0 Big changes in the type. Not compatiable with...
Using FluentD with Columnify. Running on Kubernetes to push logs to S3 in parquet. Issue's arising when trying to use avro schema with a nested map, or list of strings....
hi, i'm using columnify with avro input record. and found that records of logical types(around datetime: date, timemillis, timemicros, timestampmillis, timestampmicros) are broken. for example, the sample data gets result...
https://github.com/reproio/columnify/issues/45 TODO - [x] prototyping for PoC: (various inputs) -> map's -> arrow -> map's -> json -> parquet - [x] remove parquet writing side Go intermediates: (various inputs) ->...
retry to implement Arrow record typed intermediate representation, once more! I think we can gradually switch to that by below steps: - prototyping for PoC: (various inputs) -> map's ->...
Columnify uses Apache Arrow Schema/Record as an intermediate representation between various input formant and output ( currently only parquet ). It's powerful, fast memory accesses, supports columnar like representation. But...
We are running columnify as a part of fluent-plugin-s3 compressor (msgpack to parquet) for these days. But columnify caused no memory error in some environments. So I want to estimate...