Hi, I have parquet files that are the product of map-reduce job.
I have used AvroParquetOutputFormat in order to produce them, so I have an
avro schema file describing the structure of the data.
When I wan to create avro based table in hive I can use:
TBLPROPERTIES
('avro.schema.url'='hdfs:///schema/report/dashboard_report.avsc');
So I do not to specify every field in the create statement.
Is there a way to use the avro schema file to create the parquet table as
well?
Yosi
