Member since
09-18-2015
3274
Posts
1159
Kudos Received
426
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2619 | 11-01-2016 05:43 PM | |
| 8740 | 11-01-2016 05:36 PM | |
| 4925 | 07-01-2016 03:20 PM | |
| 8266 | 05-25-2016 11:36 AM | |
| 4432 | 05-24-2016 05:27 PM |
12-31-2015
03:14 PM
1 Kudo
@Sandeep Nemuri Sandeep, Please see this http://www.slideshare.net/hortonworks/hive-on-spar...
... View more
12-31-2015
03:13 PM
1 Kudo
@Ahmed Missaoui You may be hitting this https://issues.apache.org/jira/browse/HIVE-11934 I would say try killing HS2 and worse case case restart Hive components.
... View more
12-30-2015
11:13 PM
@Ramesh Egamamidi service mysqld start or /etc/init.d/mysqld start
... View more
12-26-2015
12:08 PM
1 Kudo
@Suresh Bonam
Please read the rest of the explanation https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Joins In every map/reduce stage of the join, the last table in the sequence is streamed through the reducers where as the others are buffered. Therefore, it helps to reduce the memory needed in the reducer for buffering the rows for a particular value of the join key by organizing the tables such that the largest tables appear last in the sequence. e.g. in SELECT a.val, b.val, c.val FROM a JOIN b ON (a.key = b.key1) JOIN c ON (c.key = b.key1)
all the three tables are joined in a single map/reduce job and the values for a particular value of the key for tables a and b are buffered in the memory in the reducers. Then for each row retrieved from c, the join is computed with the buffered rows. Similarly for SELECT a.val, b.val, c.val FROM a JOIN b ON (a.key = b.key1) JOIN c ON (c.key = b.key2)
there are two map/reduce jobs involved in computing the join. The first of these joins a with b and buffers the values of a while streaming the values of b in the reducers. The second of one of these jobs buffers the results of the first join while streaming the values of c through the reducers.
... View more
12-25-2015
06:54 PM
@Mark Petronic Good to know and thanks for sharing the details in the initial post as it helps a lot to understand the issue. Happy Holidays!
... View more
12-25-2015
04:49 PM
@Mark Petronic So ..the issue is with the partition starts with 0 ..correct? Your solution is to rename the partition starting with 0 to a non zero integer i,e rename 06 to 6 I am checking the bug database to see if it was reported or if it's an expected behavior. @gopal @Alan Gates
... View more
12-25-2015
04:43 PM
@Alan Gates
... View more
12-25-2015
03:34 PM
@Suresh Raju I dont see anything related to Hive view. Are you still seeing the issue? Restart ambari server if you are still seeing the issue and check logs
... View more
12-25-2015
02:51 PM
@Gokul Devaraj Click admin on the right hand side and choose manage ambari create local user with name hdfs and make sure to make it admin user while creating it
... View more