Member since
09-23-2015
151
Posts
110
Kudos Received
50
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1377 | 08-12-2016 04:05 AM | |
2719 | 08-07-2016 03:58 AM | |
1190 | 07-27-2016 06:24 PM | |
1719 | 07-20-2016 03:14 PM | |
1257 | 07-18-2016 12:54 PM |
02-03-2016
11:30 PM
1 Kudo
Hi @Satish S Something must have failed during the creation of your EC2 instance. The only thing you can do at this point is to terminate the instance and launch a new one. Make sure when you create the instance that you define the proper security group and open the right ports. If your new instance has the same issue, please let me know. Thanks, Rich
... View more
02-03-2016
11:16 PM
You spelled "input-fields-terminated-by" incorrectly. I would bet that it will work once you fix that.
... View more
02-03-2016
09:44 PM
1 Kudo
Everything is configured perfectly fine on the real exam for Sqoop to work. It's also configured correctly on the practice exam. If you are having trouble getting the command to work, the solution is in the /home/horton/solutions folder on the Ubuntu instance. Try running the solution. If that fails, please share the error and I can help you from there.
... View more
02-02-2016
03:01 PM
2 Kudos
Hi @Saurabh Singh The only applications running on your local machine during the exam are Chrome and your camera. More important than the processor is your internet connection. You need a very good, consistent internet connection to take the exam. The OS does not matter - Windows is fine. If you want to test out your system, I would highly recommend taking the practice exam. It uses a similar environment and the same VNC protocol of the real exam. You can not take the exam at a pro-metric testing center - the exam is only available online on your own computer. Let me know if you have any more questions. Thanks, Rich
... View more
01-31-2016
10:49 PM
2 Kudos
Hi @Saurabh Singh The pattern of the exam is hands-on, performance based. You will be given an HDP cluster and a collection of tasks. Each task is worth 1 point, and the passing score appears in the exam instructions. For example, the exam might have 7 tasks and you need to get 5 correct to pass. (That is just an example and your actual number of tasks may vary.) You should be able to perform all of the tasks in the exam objectives listed here: http://hortonworks.com/training/class/hdp-certified-developer-hdpcd-exam/ I highly recommend you attempt the practice exam, which uses a similar environment as the real exam and contains tasks similar to the real exam: http://hortonworks.com/wp-content/uploads/2015/02/HDPCD-PracticeExamGuide1.pdf We have an FAQ page that contains some useful certification details: http://hortonworks.com/hdp-certified-developer-faq-page/ Let me know if you have any other questions.
... View more
01-29-2016
09:25 PM
1 Kudo
To use Flume, you do not need to edit the flume.conf file. The better way to write a Flume agent is to create your own Flume config file (and save it in whatever folder you like). Then when you start the Flume agent you point it to your config file with the -f flag; for example: flume-ng agent -n my_agent_name -c conf -f my_flume_agent.conf
... View more
01-22-2016
01:33 AM
The correct answer is up above - about turning off safemode on the namenode
... View more
01-21-2016
07:00 PM
I explained the fix above and the steps involved, but my answer got out of order in this discussion. It's the answer about shutting off safemode on the NN.
... View more
01-21-2016
06:13 PM
2 Kudos
Hi @Jeeva Jeeva : it looks like your NameNode was in safemode. Leaving safemode allowed your cluster to startup properly. Here is what I did - then ran start_all_services.sh and everything started up fine: $ ssh root@namenode (password is "hadoop")
# su - hdfs
$ hdfs dfsadmin -safemode leave
... View more