Member since
12-10-2015
58
Posts
24
Kudos Received
6
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1804 | 02-17-2016 04:12 AM | |
3020 | 02-03-2016 05:15 AM | |
1678 | 01-27-2016 09:13 AM | |
4223 | 01-27-2016 07:00 AM | |
2144 | 01-02-2016 03:29 PM |
04-18-2016
09:29 AM
If you want to use hint, you have to set paremeter below as false (default is true): set hive.ignore.mapjoin.hint=false;
... View more
12-28-2015
06:29 PM
@Suresh Bonam I am not exactly sure what you meant by checking Hadoop environment in AWS. It would be same as any environment. You can log into Ambari Server UI and see if all services are up and running. Then, you can perform service check for all services from UI. Go to Ambari Server UI --> Services --> Service check. To perform additional checks for environment, you can perform smoke tests for each of the services.
... View more
12-27-2015
08:11 AM
Thanks. http://mail-archives.apache.org/mod_mbox/hive-user...
... View more
02-03-2016
02:41 AM
@Suresh Bonam has this been resolved? Can you post your solution or accept the best answer?
... View more
12-23-2015
09:58 AM
4 Kudos
@Suresh Bonam There are two ways to do it which I can think of at this moment. 1. You can write a couple of Pig statements to accomplish this. 2. You can try Hive query like below: (I won't recommended it normally for performance issues as Hive will first do a full cartesian product in this query, then filter, but since one side of the join only has one row, that's not an issue here.) select emp1.ename, emp1.hiredate from emp emp1 join
(select hiredate from emp where emp.ename='KING') emp2
where emp1.hiredate > emp2.hiredate;
... View more
12-24-2015
05:52 PM
Here's the original post https://pig.apache.org/docs/r0.15.0/api/org/apache/pig/builtin/GenericInvoker.html
... View more
12-18-2015
10:35 AM
@Guilherme Braccialli thank you.its working.
... View more
12-18-2015
10:19 AM
1 Kudo
@Suresh Bonam you are right. I updated the answer. Thank you!
... View more
12-15-2015
05:38 PM
Wow cool! thanks for sharing the architecture pic 🙂
... View more
12-15-2015
12:35 PM
1 Kudo
Yupp..its working fine...Tq
... View more
- « Previous
-
- 1
- 2
- Next »