Hi, Thanks for your response.I can't do another insert as the data is
already in the table. Also, since there is a lot of data in the table already,
I am trying to find a way to avoid reprocessing/reloading.
Thanks.
On Wednesday, January 14, 2015 2:47 PM, Daniel Haviv
wrote:
Hi
Hi Kumar,
Altering the table just update's Hive's metadata without updating parquet's
schema.
I believe that if you'll insert to your table (after adding the column) you'll
be able to later on select all 3 columns.
Daniel
> On 14 בינו׳ 2015, at 21:34, Kumar V wrote:
>
> Hi,
>
> Any ideas
Hi,
Any ideas on how to go about this ? Any insights you have would be helpful.
I am kinda stuck here.
Here are the steps I followed on hive 0.13
1) create table t (f1 String, f2 string) stored as Parquet;2) upload parquet
files with 2 fields3) select * from t; < Works fine.4) alter table