Member since
04-07-2016
10
Posts
4
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1976 | 05-04-2016 10:01 AM |
06-02-2016
10:14 AM
It was as simple as removing the /.snapshot from the path?! Thanks @Jitendra Yadav , clearly time for me to take a break...!
... View more
05-19-2016
11:27 AM
2 Kudos
@R Wys There is no problem with hive here, hive has generated an execution plan with no reduce phase in your case. you can see the plan by running 'explain select*from myTable where daily_date='2015-12-29' limit 10'
... View more
05-04-2016
10:04 AM
No problem, we all do these mistakes at times 🙂
... View more
04-22-2016
04:24 PM
Thanks Benjamin, great information. About option a) - in this case a new (and query-able) meta-column called daily_date in the nice format would be created in the final table, wouldn't it? [Edit:just done it, yes it is] To make this work as an automated process where hive -e is called in a shell script, I would just need to set the new daily_date as a variable somewhere before the hive call (I think). Then: INSERT OVERWRITE TABLE final
PARTITION (daily_date=${nice_date})
SELECT facts, otherFact<exclude daily_date>
FROM staging
;
Should work! Thanks again.
... View more
09-21-2017
12:36 PM
Any solutions that work long term?
... View more