Member since
09-23-2015
151
Posts
110
Kudos Received
50
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1323 | 08-12-2016 04:05 AM | |
2589 | 08-07-2016 03:58 AM | |
1145 | 07-27-2016 06:24 PM | |
1677 | 07-20-2016 03:14 PM | |
1211 | 07-18-2016 12:54 PM |
06-20-2016
12:54 PM
Owning a certification has a certain degree of privacy protected by laws that vary by country. We can not share who is certified.
... View more
06-02-2016
11:14 AM
You should be able to implement both types of joins in Java: map-side and reduce-side.
... View more
06-01-2016
02:44 PM
The HDPCA certification and digital badge are tied to a version of HDP used when you took the exam. So if you recently passed it, that would be HDP 2.3. You will always hold this certification, but after a couple of years it will become out of date as the framework evolves.
... View more
05-31-2016
04:39 PM
Yes - you can run the scripts however you like. Keep in mind there may be a task that requires you to use Tez. But if nothing is mentioned specifically in the task instructions, then you can run your Pig and Hive scripts using Tez or not. I would recommend using Tez though for every task when applicable. Like you said - why waste precious exam time. I will take offense to the "weak machine" comment. The instances we use are extremely large for the small amount of processing that happens on them - c3.4xlarge EC2 instances. The datasets on the exam are purposely small so that time is not wasted in processing a lot of data. The longest queries you run will take less than 90 seconds, and that is w/out using Tez.
... View more
05-22-2016
01:09 PM
@Sayali Desai - +1 for Geoffrey's comment: the forum is not the place to get resolution for exam issues like this. Please send an email to certification@hortonworks.com. This will open a support ticket and you will get assistance right away. They will issue you a free credit so you can register again.
... View more
05-18-2016
01:35 PM
1 Kudo
@Fazil Aijaz Yes - there are shortcuts to the Pig, Hive, Sqoop and Flume docs. Look for the shortcuts on the desktop of the VM. The real exam environment has two tabs: one with a full desktop, and one with a terminal screen. If you just see an SSH shell into a terminal screen, then you are viewing the wrong tab.
... View more
05-17-2016
01:07 PM
@Sayali Desai - good questions, and these answers apply to all of our exams: 1. If you get disconnected, you simply reload the webpage that the exam is on. If you lose that page, you log back in to examslocal.com and re-launch the exam from there. 2. If you are facing lag during the practice exam, then you will likely get the same lag during the real exam. The lag is due to your internet connection either not being fast enough or consistent enough. VNC is a stream of images, and anytime your internet is slow or drops a connection to the VNC server, it creates the appearance of lag (even though the VM is running fine behind the scenes). If this happens, please let the exam proctor know. He/she will give you more time to complete the exam. TIP: If your internet is affecting your ability to accomplish anything on the exam, or if you are experiencing any type of technical issues with your HDP cluster or environment, let the proctor know. If it's a cluster issue, they will reach out to our technical support team to help try to fix the issue. If any problems can not be resolved in a timely fashion, you can simply stop the exam and reschedule it again.
... View more
05-13-2016
02:31 PM
1 Kudo
@Hemant Javeri - you must follow the task instructions as stated in the exam. The instructions will clearly state the filename that you are supposed to save your query or code in. For example, task #3 might tell you to save your Hive query in a text file named /home/horton/solutions/task3 on the local filesystem. We do not care how you write or execute the script - you can use the Hive shell, Hive View in Ambari, write the query in a text editor using vi or gedit, etc. But you must run the script, it must generate the desired output, and you must save the query or code in the specified text file.
... View more
05-13-2016
02:25 PM
FWIW: we have changed the exam code from "hdp-cp-24" to "HDPCD", so now when you go to examslocal.com you should see "Hortonworks: HDP Certified Developer (HDPCD)"
... View more
05-13-2016
02:22 PM
@Shikha Verma - The MySQL instance is running on a machine called "namenode", not localhost. If you want to run the mysql client, you should SSH onto namenode first: $ ssh root@namenode The password is "hadoop". Once you are on the namenode, then you can run mysql:
# mysql --user root -p That password is also "hadoop". Let me know if that works.
... View more