Re: Issue while reading Parquet file in Hive

2015-07-21 Thread Daniel Weeks
bove exception. > > So please help me to solve this problem. > > Currently I am using > Hive 1.1.0-cdh5.4.2. >Cascading 2.5.1 >parquet-format-2.2.0 > > > Thanks, > Santlal Gutpa > > > -Original Message- > From: Daniel Weeks [mailto:dwe

RE: Issue while reading Parquet file in Hive

2015-07-19 Thread Santlal J Gupta
Sent: Friday, July 17, 2015 9:09 PM To: dev@parquet.apache.org Subject: Re: Issue while reading Parquet file in Hive Santial, It might just be as simple as the storage format for your hive table. I notice you say: hive> create table timestampTest (timestampField timestamp); But thi

Re: Issue while reading Parquet file in Hive

2015-07-17 Thread Daniel Weeks
Santial, It might just be as simple as the storage format for your hive table. I notice you say: hive> create table timestampTest (timestampField timestamp); But this should be: hive> create table timestampTest (timestampField timestamp) stored as parquet; Hive is probably processing the file

Issue while reading Parquet file in Hive

2015-07-16 Thread Santlal J Gupta
Hello, I have following issue. I have created parquet file through cascading parquet and want to load into the hive table. Parquet file is loaded successfully but when I try to read the file it gives null instead of actual data. Please find the below code . package com.parquet.TimestampTest;