You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by "Kengo Seki (Jira)" <ji...@apache.org> on 2019/09/18 04:49:00 UTC

[jira] [Assigned] (PARQUET-1598) Make convert-csv work with the input filename which starts with a period or an numeric

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

Kengo Seki reassigned PARQUET-1598:
-----------------------------------

    Assignee: Kengo Seki

> Make convert-csv work with the input filename which starts with a period or an numeric
> --------------------------------------------------------------------------------------
>
>                 Key: PARQUET-1598
>                 URL: https://issues.apache.org/jira/browse/PARQUET-1598
>             Project: Parquet
>          Issue Type: Improvement
>          Components: parquet-cli
>            Reporter: Kengo Seki
>            Assignee: Kengo Seki
>            Priority: Major
>              Labels: pull-request-available
>
> I ran parquet-cli's {{convert-csv}} with an input file which name starts with a numeric character without {{--schema}} option and got the following error:
> {code}
> $ java -cp 'target/*:target/dependency/*' org.apache.parquet.cli.Main convert-csv 0sample.csv -o sample.parquet
> Unknown error
> shaded.parquet.org.apache.avro.SchemaParseException: Illegal initial character: 0sample
> 	at shaded.parquet.org.apache.avro.Schema.validateName(Schema.java:1498)
> 	at shaded.parquet.org.apache.avro.Schema.access$200(Schema.java:86)
> 	at shaded.parquet.org.apache.avro.Schema$Name.<init>(Schema.java:645)
> 	at shaded.parquet.org.apache.avro.Schema.createRecord(Schema.java:182)
> 	at shaded.parquet.org.apache.avro.SchemaBuilder$RecordBuilder.fields(SchemaBuilder.java:1805)
> 	at org.apache.parquet.cli.csv.AvroCSV.inferSchemaInternal(AvroCSV.java:158)
> 	at org.apache.parquet.cli.csv.AvroCSV.inferNullableSchema(AvroCSV.java:78)
> 	at org.apache.parquet.cli.commands.ConvertCSVCommand.run(ConvertCSVCommand.java:160)
> 	at org.apache.parquet.cli.Main.run(Main.java:147)
> 	at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:70)
> 	at org.apache.parquet.cli.Main.main(Main.java:177)
> {code}
> This is because that {{convert-csv}} uses the input file name as the name for the output schema, while Avro requires its schema name to match the regex pattern {{[A-Za-z_][A-Za-z0-9_]*}}.
> So users have to change the input file name or use the {{--schema}} option explicitly, but it's not so obvious from the error message.
> It'd be nice if the message were improved, or the schema name were automatically replaced with valid characters to avoid this problem.



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