asfimport

Results 328 issues of asfimport

Data obfuscation in sensitive columns - for users without access to column encryption keys. 1. Implement on top of [basic Parquet encryption](https://github.com/apache/parquet-format/blob/encryption/Encryption.md)  1. Built-in support for multiple masking mechanisms, with...

Component: Parquet
Priority: Major
Type: enhancement

According to parquet format specification columns annotated as DECIMAL should use SIGNED comparator and statistics should be available. The sort order returned by `org.apache.parquet.format.converter.ParquetMetadataConverter` for DECIMAL is `SortOrder.UNKNOWN` which contradicts...

Component: Parquet
Priority: Minor
Type: bug

`ParquetProperties` by default is initialized with static `ValuesWriterFactory`, but during `ParquetProperties` construction `ValuesWriterFactory` is initialized with property. It means that if I construct two `ParquetProperties` with different properties (for example...

Component: Parquet
Priority: Major
Type: bug

There are changes between 1.8.0 and 1.10.0 that break API compatibility. A minor version change is supposed to be backward compatible with 1.9.0 and 1.8.0. **Reporter**: [Vlad Rozov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=vrozov) / @vrozov...

Component: Parquet
Priority: Major
Type: bug

Currently, the floating point comparison order defined by parquet-format is ambigous and different implementations use different orderings. Once the specification is made unambigous (PARQUET-1222), implementations should be updated to conform...

Component: Java
Component: Parquet
Priority: Major
Type: task

The class "org.apache.commons.codec.binary.Base64" in parquet-tools.jar version 1.9.0 is same at package and class name to which is in commons-codec.jar(all version) ,but its implement is much older. That makes a jar-hell...

Component: Java
Component: Parquet
Priority: Major
Type: bug

**Reporter**: [Ryan Blue](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rdblue) / @rdblue **Assignee**: [Ryan Blue](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rdblue) / @rdblue #### Related issues: - [Release Parquet format 2.4.0](https://github.com/apache/parquet-format/issues/274) (is blocked by) #### PRs and other links: - [GitHub Pull Request...

Component: Java
Component: Parquet
Priority: Major
Type: task

I am happy to help with this but I'd love some guidance on: 1) likelihood of being accepted as a patch. 2) how critical it is to maintain backwards compatibility...

Component: Parquet
Priority: Major
Type: enhancement

Scenario: There is a schema with many optional groups, e.g. ``` message example { required binary id (UTF8); optional group a1 (LIST) { repeated int64 array; } optional group a2...

Component: Java
Component: Parquet
Priority: Major
Type: enhancement

Currently, `ValuesWriterFactory` could be config at `ParquetProperties`, but `ParquetOutputFormat` which is used by Hadoop and Hive haven't support to custom a ValuesWriterFactory. We should support update `ParquetOutputFormat` to support it....

Component: Parquet
Priority: Major
Type: enhancement