Member since
01-20-2014
578
Posts
102
Kudos Received
94
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5934 | 10-28-2015 10:28 PM | |
2861 | 10-10-2015 08:30 PM | |
4931 | 10-10-2015 08:02 PM | |
3691 | 10-07-2015 02:38 PM | |
2467 | 10-06-2015 01:24 AM |
11-06-2014
11:17 AM
Impala is part of CDH 5. So to upgrade impala, you upgrade all of CDH. You don't upgrade CDH "first". That's the only step. Be sure to follow the Cloudera Manager documentation for upgrades, as CDH5.2 has special upgrade steps. First upgrade Cloudera Manager: http://www.cloudera.com/content/cloudera/en/documentation/core/latest/topics/cm_ag_upgrading_cm.html Then upgrade CDH: http://www.cloudera.com/content/cloudera/en/documentation/core/latest/topics/cm_mc_upgrade_to_cdh52.html
... View more
10-29-2014
10:04 AM
You can, yes. I encourage you to ask detailed questions in the HBase area. You could also evaluate Apache Phoenix as another SQL-over-HBase option (not currently supported by Cloudera though).
... View more
10-26-2014
10:17 AM
Gautam, You are right. The treeset is treated like any collection object within MR The following Mapper code worked for me import java.io.IOException; import java.util.Iterator; import java.util.TreeSet; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.NullWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Mapper; public class KPWordCountMapper extends Mapper<LongWritable, Text, Text, NullWritable>{ int count = 0; @Override public void map(LongWritable inputKey,Text inputVal,Context context) throws IOException,InterruptedException { TreeSet<String> ts = new TreeSet<>(); String line = inputVal.toString(); String[] splits = line.split("\\W+"); for(String outputKey:splits) if(outputKey.length() > 0){ ts.add(outputKey); } Iterator<String> itr= ts.iterator(); while(itr.hasNext()){ context.write(new Text(itr.next()),NullWritable.get()); } } }
... View more
10-08-2014
11:49 AM
Hi Team, I got a solution. When we are selecting an instance with instance store for configuring CDH, the log files will be automatically stored to the instance store. While we stops the instance the data / logs in the instance store will be deleted and that results to showing error " Missing Blocks". For avoiding this we need to remove instance store while launching instance or we need to change the log location to EBS volume manually after completing installation. I think its better to remove the instance store while launching the instance. Thanks to all you.. Cheers!!!!
... View more
09-25-2014
10:14 AM
Thanks for opening my eyes. I was scrolling through lots of subversions named postgresql-8.1.x and i didn't notice that additional rpm called postgresql84. Unfortunately for me it's too late as i just finished the install of RHEL 6. To answer previous question: RHEL 5 is still supported by RedHat. Changing the OS baseline, for an entire line of solutions, isn't an easy choice when working in a large corporation.
... View more
09-22-2014
05:22 PM
Hi! I'd be happy to help you with this new problem. To make things easier for future users, how about we mark my answer for the original thread topic and start a new one for this issue?
... View more
09-21-2014
07:50 AM
1 Kudo
I solved the problem. cloudera-scm user did not have access to a parent folder: /pkg/moip/mo10755/work/mzpl which caused that the cloudera-scm user could not run any scripts from parcel subfolders. I changed the permissions and now it works 🙂 Thank you very much for your help!
... View more