Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 09-26-2016 12:14 PM
Currently, the objectives for the HDPCD: Java exam state that candidates should be able to "perform a join on two or more datasets" and "perform a map-side join of two datasets". I found this language a little odd as the first objective is very general, but the second states a specific type of join. Does this mean that in addition to being able to complete a task that performs map-side join, we should be familiar with other join methods like a Bloom filter? Or, will the exam really just be testing for the ability to perform a map-side join?
Created 01-10-2017 07:18 AM
"perform a join on two or more datasets" - implies that there are more than 2 data sets involved and thus you may ave to write a solution which can comprise only a Map Join or only a Reduce Join or a combination of both.
In essence, if the data sets are too large and could result in memory issues, then bloom filter is the route to take.
So from a conceptual perspective, it is good to know Bloom Filter even if it is not specifically mentioned in Exam Objectives.
Created 10-04-2016 06:38 PM
"perform a join on two or more datasets" - implies that there are more than 2 data sets involved and thus you may ave to write a solution which can comprise only a Map Join or only a Reduce Join or a combination of both.
In essence, if the data sets are too large and could result in memory issues, then bloom filter is the route to take.
So from a conceptual perspective, it is good to know Bloom Filter even if it is not specifically mentioned in Exam Objectives.
Created 12-20-2016 08:20 AM
@Dinesh I agree with you. The most important question you can find related to java is this Difference between String , Stringbuilder and stringbuffer . Best of luck for the exams.
Created 01-10-2017 07:18 AM
"perform a join on two or more datasets" - implies that there are more than 2 data sets involved and thus you may ave to write a solution which can comprise only a Map Join or only a Reduce Join or a combination of both.
In essence, if the data sets are too large and could result in memory issues, then bloom filter is the route to take.
So from a conceptual perspective, it is good to know Bloom Filter even if it is not specifically mentioned in Exam Objectives.