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
Describe the usage question you have. Please include as many useful details as possible.
The parquet-avro library supports using some more recent parquet features with configuration settings like parquet.avro.write-parquet-uuid (needs to be true) and parquet.avro.write-old-list-structure (needs to be false). However, parquet-cli does not have a documented way to set these. Poking around with strace, I've found a convert command does result in an openat syscall targetting logging.properties to look for logging-related configuration, but I've not found any other attempts to open any other files with the properties extensions. To work around this, I have been manually changing the values of WRITE_PARQUET_UUID_DEFAULT and friends in the source and rebuilding the project.
This issue can be resolved in one of two ways:
Document in the readme file for parquet-cli that it does not support configuring any AvroWriteSupport settings
Document in the readme file for parquet-cli that it does support configuring AvroWriteSupport settings, and provide an example of what CLI option is used to do this.
Component(s)
No response
The text was updated successfully, but these errors were encountered:
Describe the usage question you have. Please include as many useful details as possible.
The parquet-avro library supports using some more recent parquet features with configuration settings like
parquet.avro.write-parquet-uuid
(needs to be true) andparquet.avro.write-old-list-structure
(needs to be false). However, parquet-cli does not have a documented way to set these. Poking around with strace, I've found aconvert
command does result in anopenat
syscall targettinglogging.properties
to look for logging-related configuration, but I've not found any other attempts to open any other files with theproperties
extensions. To work around this, I have been manually changing the values ofWRITE_PARQUET_UUID_DEFAULT
and friends in the source and rebuilding the project.This issue can be resolved in one of two ways:
AvroWriteSupport
settingsAvroWriteSupport
settings, and provide an example of what CLI option is used to do this.Component(s)
No response
The text was updated successfully, but these errors were encountered: