[
https://issues.apache.org/jira/browse/PARQUET-1183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16313260#comment-16313260
]
Werner Daehn commented on PARQUET-1183:
---------------------------------------
https://github.com/apache/parquet-mr/pull/446
> AvroParquetWriter needs OutputFile based Builder
> ------------------------------------------------
>
> Key: PARQUET-1183
> URL: https://issues.apache.org/jira/browse/PARQUET-1183
> Project: Parquet
> Issue Type: Improvement
> Components: parquet-avro
> Affects Versions: 1.9.1
> Reporter: Werner Daehn
> Fix For: 1.10.0
>
>
> The ParquetWriter got a new Builder(OutputFile).
> But it cannot be used by the AvroParquetWriter as there is no matching
> Builder/Constructor.
> Changes are quite simple:
> public static <T> Builder<T> builder(OutputFile file) {
> return new Builder<T>(file)
> }
> and in the static Builder class below
> private Builder(OutputFile file) {
> super(file);
> }
> Note: I am not good enough with builds, maven and git to create a pull
> request yet. Sorry. Will try to get better here.
> See: https://issues.apache.org/jira/browse/PARQUET-1142
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)