Member since
09-11-2015
44
Posts
11
Kudos Received
4
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3455 | 05-09-2016 05:58 AM | |
| 9149 | 10-05-2015 06:56 AM | |
| 22833 | 09-29-2015 01:17 PM |
05-09-2016
05:58 AM
1 Kudo
Hello, The link posted by the moderator will be helpful, particularly Common Issue #1. Also, see the reply to this Community post: virtual machine won't play
... View more
11-05-2015
08:15 AM
If you are using the Pig action, as opposed to a shell action, then your Pig job should run in a distributed fashion. Here is a great blog post (recently updated for CDH 5) that shows a step by step example for running a Pig script as an Oozie Pig action: https://blog.cloudera.com/blog/2013/03/how-to-use-oozie-shell-and-java-actions/
... View more
11-04-2015
07:52 AM
1 Kudo
It seems that you prefer to install and configure CDH rather than using the Cloudera Quickstart VM. I checked the supported OS versions and do not see Centos 6.3 listed for CDH 5.4. I recommend using one of the supported versions. More information can be found here: http://www.cloudera.com/content/www/en-us/downloads/cdh/5-4-0.html ... and here: http://www.cloudera.com/content/www/en-us/documentation/enterprise/latest/topics/installation_reqts.html Instructions for Cloudera Manager Deployment, or unmanaged deployment, are here: http://www.cloudera.com/content/www/en-us/documentation/enterprise/latest/topics/installation_installation.html
... View more
11-03-2015
06:25 AM
Have you considered using the Cloudera Quickstart VM as a first step? It is basically a single node Hadoop cluster that runs in a VMWare VM - it is already configured with Hadoop ecosystem tools. All you have to do is download it, and launch the VM on your laptop. More information here: http://www.cloudera.com/content/www/en-us/downloads/quickstart_vms/5-4.html
... View more
10-29-2015
02:25 PM
1 Kudo
I think what the earlier responders were suggesting is that you type this at the Linux command prompt: hdfs dfs -ls /user/cloudera You should see your new directory, pig-demo, listed as a subdirectory of /user/cloudera. Can you try this? (Note: you can use 'hadoop fs -ls /user/cloudera' too, but 'hadoop fs' is being deprecated so best to switch to using 'hdfs dfs ...')
... View more
10-05-2015
09:02 AM
Terrific! Glad it's working.
... View more
10-05-2015
06:56 AM
I tested your command in the Cloudera Quickstart VM running the same version as you are (CDH 5.4.2). I am using the VMWare version of the VM. Your command worked just fine (underscores are not a problem). Here are the commands I issued, try them and see if they work: [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -ls /user/hive/warehouse -- verfiy dir does not exist [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -mkdir /user/hive/warehouse/original_access_logs -- create dir [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -ls /user/hive/warehouse -- verify dir exists Found 1 items drwxr-xr-x - hdfs hive 0 2015-10-05 06:46 /user/hive/warehouse/original_access_logs [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -mkdir /user/hive/warehouse/original_access_logs -- create dir fails mkdir: `/user/hive/warehouse/original_access_logs': File exists [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -rmdir /user/hive/warehouse/original_access_logs -- delete dir [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -ls /user/hive/warehouse -- verify dir does not exist [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -mkdir /user/hive/warehouse/original_access_logs -- try creating dir again [cloudera@quickstart hive]$ sudo -u hdfs hadoop fs -ls /user/hive/warehouse -- verify dir was created Found 1 items drwxr-xr-x - hdfs hive 0 2015-10-05 06:47 /user/hive/warehouse/original_access_logs (Note: It is best to switch from using 'hadoop fs ... ' commands to 'hdfs dfs ... ' commands as only the latter will be supported in the future.)
... View more
09-29-2015
01:17 PM
1 Kudo
Here is the data sheet for your processor - it has VT-X support but it may need to be enabled: http://ark.intel.com/products/85214/Intel-Core-i7-5500U-Processor-4M-Cache-up-to-3_00-GHz When I reboot my Windows machine, there is a prompt to enter the BIOS or Setup menu - I have to press F10 within a few seconds of the prompt and then a menu appears. Look for the VT or Virtualization option. In some cases it can be found by navigating through the menus as follows: Security > OS Security > Intel Virtualization Technology Try to reboot your machine and see if such a prompt appears. If not, there will be another way to do it, will have to read up. There are lots of youtube videos and posts on this topic, e.g.: http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1003944 and https://www.youtube.com/watch?v=CbthSKoVF-U
... View more
09-29-2015
08:27 AM
Two questions: 1. Have you enabled virtualization in the BIOS? 2. Are you sure the entire zip file downloaded successfully?
... View more