You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by "Fokko Driesprong (Jira)" <ji...@apache.org> on 2020/04/11 07:02:00 UTC

[jira] [Resolved] (PARQUET-1599) Fix to-avro to respect the overwrite option

     [ https://issues.apache.org/jira/browse/PARQUET-1599?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Fokko Driesprong resolved PARQUET-1599.
---------------------------------------
    Fix Version/s: 1.12.0
       Resolution: Fixed

> Fix to-avro to respect the overwrite option
> -------------------------------------------
>
>                 Key: PARQUET-1599
>                 URL: https://issues.apache.org/jira/browse/PARQUET-1599
>             Project: Parquet
>          Issue Type: Bug
>          Components: parquet-cli
>            Reporter: Kengo Seki
>            Assignee: Kengo Seki
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.12.0
>
>
> parquet-cli's {{to-avro}} has {{--overwrite}} option, and it works as expected:
> {code}
> $ ls -l output
> total 8
> -rw-r--r--  1 sekikn  staff  2010 Jun 13 12:37 sample.avro
> $ java -cp 'target/*:target/dependency/*' org.apache.parquet.cli.Main to-avro sample.parquet -o output/sample.avro --overwrite
> $ ls -l output
> total 8
> -rw-r--r--  1 sekikn  staff  2010 Jun 13 12:38 sample.avro
> {code}
> But even without this flag, it overwrites the existing file with no warning.
> {code}
> $ java -cp 'target/*:target/dependency/*' org.apache.parquet.cli.Main to-avro sample.parquet -o output/sample.avro
> $ ls -l output
> total 8
> -rw-r--r--  1 sekikn  staff  2010 Jun 13 12:39 sample.avro
> {code}
> This behaviour should be fixed for consistency with other subcommands.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)