Member since
01-01-2016
54
Posts
26
Kudos Received
0
Solutions
02-15-2016
09:59 PM
1 Kudo
Hi @Vidya SK - the Java exam currently consists of a single task, but that is subject to change at any time.
... View more
02-08-2016
03:07 AM
1 Kudo
@Neeraj Sabharwal Sorry Neeraj..new to the forum.. takes time to get used. Now I clicked accepted... Thanks.
... View more
02-08-2016
02:53 PM
1 Kudo
@Vidya SK - each task on the HDPCD exam is worth 1 point and it is either correct or wrong. There is no partial credit. If a task has subtasks - the entire task is still worth 1 point. Keep in mind the practice exam is meant to get you familiar with the environment, and to also give you an idea of the types of tasks on the real exam, but it is not perfectly exactly reflective of the real exam. For example, in the practice exam all the tasks depend on each other, while on the real exam the tasks are completely independent. To fully prepare for the HDPCD exam, you should be able to complete all of the exam objectives listed on our website. That should be your main focus while preparing and studying for the exam.
... View more
01-16-2016
11:40 PM
I'd recommend to test connectivity first. You can do it with beeline tool. Once you connected to jdbc url from beeline u can continue experiments with eclipse.
... View more
01-14-2016
09:21 PM
Hi Vidya, It is really not a big enough instance. The exam uses c3.4xlarge, which is overkill. You should get decent performance somewhere in the middle - maybe try a c3.2xlarge. -Rich
... View more
01-13-2016
05:20 AM
@Vidya SK here's my tutorial for telnet source and logger sink and additionally hdfs sink. # tested on HDP 2.3.2 Sandbox # Example, single-node Flume configuration using netcat source, memory channel and logger sink # install telnet yum install -y telnet # start flume with this configuration ****************************************************************************** # example.conf: A single-node Flume configuration # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 # Describe the sink a1.sinks.k1.type = logger # Use a channel which buffers events in memory a1.channels.c1.type = memory a1.channels.c1.capacity = 1000 a1.channels.c1.transactionCapacity = 100 # Bind the source and sink to the channel a1.sources.r1.channels = c1 a1.sinks.k1.channel = c1 ****************************************************************************** # in another terminal telnet localhost 44444 # type anything # then in the original terminal tail -f /var/log/flume/flume-a1.log # Exampe netcat source, hdfs sink as DataStream # create hdfs flume directory sudo -u hdfs hdfs dfs -mkdir /flume sudo -u hdfs hdfs dfs -mkdir /flume/events sudo -u hdfs hdfs dfs -chown -R flume:hdfs /flume/events ****************************************************************************** # example.conf: A single-node Flume configuration # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 # Describe the sink a1.sinks.k1.type = hdfs a1.sinks.k1.hdfs.path = /flume/events/%y-%m-%d/%H%M/%S a1.sinks.k1.hdfs.filePrefix = events- a1.sinks.k1.hdfs.round = true a1.sinks.k1.hdfs.roundValue = 10 a1.sinks.k1.hdfs.roundUnit = minute a1.sinks.k1.hdfs.useLocalTimeStamp = true a1.sinks.k1.hdfs.fileType = DataStream # Use a channel which buffers events in memory a1.channels.c1.type = memory a1.channels.c1.capacity = 1000 a1.channels.c1.transactionCapacity = 100 # Bind the source and sink to the channel a1.sources.r1.channels = c1 a1.sinks.k1.channel = c1 ****************************************************************************** # show the output in hdfs sudo -u flume hdfs dfs -ls /flume/events/ sudo -u flume hdfs dfs -ls /flume/events/ sudo -u flume hdfs dfs -cat /flume/events/*/*/*/*
... View more
02-22-2016
06:25 PM
The tasks for the practice exam are a part of the Amazon AMI image. The details are here: http://hortonworks.com/wp-content/uploads/2015/02/HDPCD-PracticeExamGuide1.pdf
... View more
02-05-2016
11:11 PM
@rich Thanks rich. your solution worked out. I accept this answer.
... View more