you could always have another sub partition under the daily partition. This sub
partition could be the timestamp on when you did the load. So when you run the
statement you would create a new sub partition within the date partition and in
effect you end up doing an append to the Hive partition.
You're pretty much going to overwrite the partition every time you want
to add data to it. I wish there was an append but there isn't. We're
basically doing it the same way you are (looking at your insert statement).
The challenge I'm running into (doing the same thing you are) is when
I'm b
Hi,
My end goal is to load the daily Apache logs. I wish to partition it by date
and the group has helped me in giving some advices, but it seems that I am
still stuck.
My "daily Apache logs" can contain dates for 2 days ago, yesterday, and
today. So, what I did was I created a staging_weblog tab