Question # 1 Problem Scenario 62 : You have been given below code snippet.val a = sc.parallelize(List("dogM, "tiger", "lion", "cat", "panther", "eagle"), 2) val b = a.map(x => (x.length, x)) operation1 Write a correct code snippet for operationl which will produce desired output, shown below. Array[(lnt, String)] = Array((3,xdogx), (5,xtigerx), (4,xlionx), (3,xcatx), (7,xpantherx), (5,xeaglex))
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : b.mapValuesf'x" + _ + "x").collect mapValues [Pair] : Takes the values of a RDD that consists of two-component tuples, and applies the provided function to transform each value. Tlien,.it.forms newtwo-componend tuples using the key and the transformed value and stores them in a new RDD.
Question # 2 Problem Scenario 64 : You have been given below code snippet. val a = sc.parallelize(List("dog", "salmon", "salmon", "rat", "elephant"), 3) val b = a.keyBy(_.length) val c = sc.parallelize(Ust("dog","cat","gnu","salmon","rabbit","turkey","wolf","bear","bee"), 3) val d = c.keyBy(_.length) operation1 Write a correct code snippet for operationl which will produce desired output, shown below. Array[(lnt, (Option[String], String))] = Array((6,(Some(salmon),salmon)), (6,(Some(salmon),rabbit}}, (6,(Some(salmon),turkey)), (6,(Some(salmon),salmon)), (6,(Some(salmon),rabbit)), (6,(Some(salmon),turkey)), (3,(Some(dog),dog)), (3,(Some(dog),cat)), (3,(Some(dog),gnu)), (3,(Some(dog),bee)), (3,(Some(rat), (3,(Some(rat),cat)), (3,(Some(rat),gnu)), (3,(Some(rat),bee)), (4,(None,wo!f)), (4,(None,bear)))
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: solution : b.rightOuterJqin(d).collect rightOuterJoin [Pair] : Performs an right outer join using two key-value RDDs. Please note that the keys must be generally comparable to make this work correctly.
Question # 3 Problem Scenario 16 : You have been given following mysql database details as well as other info. user=retail_dba password=cloudera database=retail_db jdbc URL = jdbc:mysql://quickstart:3306/retail_db Please accomplish below assignment. 1. Create a table in hive as below. create table departments_hive(department_id int, department_name string); 2. Now import data from mysql table departments to this hive table. Please make sure that data should be visible using below hive command, select" from departments_hive
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : Step 1 : Create hive table as said. hive show tables; create table departments_hive(department_id int, department_name string); Step 2 : The important here is, when we create a table without delimiter fields. Then default delimiter for hive is ^A (\001). Hence, while importing data we have to provide proper delimiter. sqoop import \ -connect jdbc:mysql://quickstart:3306/retail_db \ ~username=retail_dba \ -password=cloudera \ -table departments \ -hive-home /user/hive/warehouse \ -hive-import \ -hive-overwrite \ -hive-table departments_hive \ -fields-terminated-by '\001' Step 3 : Check-the data in directory. hdfs dfs -Is /user/hive/warehouse/departments_hive hdfs dfs -cat/user/hive/warehouse/departmentshive/part' Check data in hive table. Select * from departments_hive;
Question # 4 Problem Scenario 12 : You have been given following mysql database details as well as other info. user=retail_dba password=cloudera database=retail_db jdbc URL = jdbc:mysql://quickstart:3306/retail_db Please accomplish following. 1. Create a table in retailedb with following definition. CREATE table departments_new (department_id int(11), department_name varchar(45), created_date T1MESTAMP DEFAULT NOW()); 2. Now isert records from departments table to departments_new 3. Now import data from departments_new table to hdfs. 4. Insert following 5 records in departmentsnew table. Insert into departments_new values(110, "Civil" , null); Insert into departments_new values(111, "Mechanical" , null); Insert into departments_new values(112, "Automobile" , null); Insert into departments_new values(113, "Pharma" , null); Insert into departments_new values(114, "Social Engineering" , null); 5. Now do the incremental import based on created_date column.
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : Step 1 : Login to musql db mysql -user=retail_dba -password=cloudera show databases; use retail db; show tables; Step 2 : Create a table as given in problem statement. CREATE table departments_new (department_id int(11), department_name varchar(45), createddate T1MESTAMP DEFAULT NOW()); show tables; Step 3 : isert records from departments table to departments_new insert into departments_new select a.", null from departments a; Step 4 : Import data from departments new table to hdfs. sqoop import \ -connect jdbc:mysql://quickstart:330G/retail_db \ ~username=retail_dba \ -password=cloudera \ -table departments_new\ -target-dir /user/cloudera/departments_new \ -split-by departments Stpe 5 : Check the imported data. hdfs dfs -cat /user/cloudera/departmentsnew/part" Step 6 : Insert following 5 records in departmentsnew table. Insert into departments_new values(110, "Civil" , null); Insert into departments_new values(111, "Mechanical" , null); Insert into departments_new values(112, "Automobile" , null); Insert into departments_new values(113, "Pharma" , null); Insert into departments_new values(114, "Social Engineering" , null); commit; Stpe 7 : Import incremetal data based on created_date column. sqoop import \ -connect jdbc:mysql://quickstart:330G/retaiI_db \ -username=retail_dba \ -password=cloudera \ -table departments_new\ -target-dir /user/cloudera/departments_new \ -append \ -check-column created_date \ -incremental lastmodified \ -split-by departments \ -last-value "2016-01-30 12:07:37.0" Step 8 : Check the imported value. hdfs dfs -cat /user/cloudera/departmentsnew/part"
Question # 5 Problem Scenario 54 : You have been given below code snippet. val a = sc.parallelize(List("dog", "tiger", "lion", "cat", "panther", "eagle")) val b = a.map(x => (x.length, x)) operation1 Write a correct code snippet for operationl which will produce desired output, shown below. Array[(lnt, String)] = Array((4,lion), (7,panther), (3,dogcat), (5,tigereagle))
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : b.foidByKey("")(_ + J.collect foldByKey [Pair] Very similar to fold, but performs the folding separately for each key of the RDD. This function is only available if the RDD consists of two-component tuples Listing Variants def foldByKey(zeroValue: V)(func: (V, V) => V): RDD[(K, V}] def foldByKey(zeroValue: V, numPartitions: lnt)(func: (V, V) => V): RDD[(K, V)] def foldByKey(zeroValue: V, partitioner: Partitioner)(func: (V, V) => V): RDD[(K, V}]
Question # 6 Problem Scenario 45 : You have been given 2 files , with the content as given Below (spark12/technology.txt) (spark12/salary.txt) (spark12/technology.txt) first,last,technology Amit,Jain,java Lokesh,kumar,unix Mithun,kale,spark Rajni,vekat,hadoop Rahul,Yadav,scala (spark12/salary.txt) first,last,salary Amit,Jain,100000 Lokesh,kumar,95000 Mithun,kale,150000 Rajni,vekat,154000 Rahul,Yadav,120000 Write a Spark program, which will join the data based on first and last name and save the joined results in following format, first Last.technology.salary
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : Step 1 : Create 2 files first using Hue in hdfs. Step 2 : Load all file as an RDD val technology = sc.textFile(Msparkl2/technology.txt").map(e => e.splitf',")) val salary = sc.textFile("spark12/salary.txt").map(e => e.split(".")) Step 3 : Now create Key.value pair of data and join them. val joined = technology.map(e=>((e(0),e(1)),e(2))).join(salary.map(e=>((e(0),e(1)),e(2)))) Step 4 : Save the results in a text file as below. joined.repartition(1).saveAsTextFile("spark12/multiColumn Joined.txt")
Question # 7 Problem Scenario 80 : You have been given MySQL DB with following details. user=retail_dba password=cloudera database=retail_db table=retail_db.products jdbc URL = jdbc:mysql://quickstart:3306/retail_db Columns of products table : (product_id | product_category_id | product_name | product_description | product_price | product_image ) Please accomplish following activities. 1. Copy "retaildb.products" table to hdfs in a directory p93_products 2. Now sort the products data sorted by product price per category, use productcategoryid colunm to group by category
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : Step 1 : Import Single table . sqoop import -connect jdbc:mysql://quickstart:3306/retail_db -username=retail_dba - password=cloudera -table=products -target-dir=p93 Note : Please check you dont have space between before or after '=' sign. Sqoop uses the MapReduce framework to copy data from RDBMS to hdfs Step 2 : Step 2 : Read the data from one of the partition, created using above command, hadoop fs -cat p93_products/part-m-00000 Step 3 : Load this directory as RDD using Spark and Python (Open pyspark terminal and do following}. productsRDD = sc.textFile(Mp93_products") Step 4 : Filter empty prices, if exists #filter out empty prices lines Nonempty_lines = productsRDD.filter(lambda x: len(x.split(",")[4]) > 0) Step 5 : Create data set like (categroyld, (id,name,price) mappedRDD = nonempty_lines.map(lambda line: (line.split(",")[1], (line.split(",")[0], line.split(",")[2], float(line.split(",")[4])))) tor line in mappedRDD.collect(): print(line) Step 6 : Now groupBy the all records based on categoryld, which a key on mappedRDD it will produce output like (categoryld, iterable of all lines for a key/categoryld) groupByCategroyld = mappedRDD.groupByKey() for line in groupByCategroyld.collect(): print(line) step 7 : Now sort the data in each category based on price in ascending order. # sorted is a function to sort an iterable, we can also specify, what would be the Key on which we want to sort in this case we have price on which it needs to be sorted. groupByCategroyld.map(lambda tuple: sorted(tuple[1], key=lambda tupleValue: tupleValue[2])).take(5) Step 8 : Now sort the data in each category based on price in descending order. # sorted is a function to sort an iterable, we can also specify, what would be the Key on which we want to sort in this case we have price which it needs to be sorted. on groupByCategroyld.map(lambda tuple: sorted(tuple[1], key=lambda tupleValue: tupleValue[2] , reverse=True)).take(5)
Question # 8 Problem Scenario 38 : You have been given an RDD as below, val rdd: RDD[Array[Byte]] Now you have to save this RDD as a SequenceFile. And below is the code snippet. import org.apache.hadoop.io.compress.GzipCodec rdd.map(bytesArray => (A.get(), new B(bytesArray))).saveAsSequenceFile('7output/path",classOt[GzipCodec]) What would be the correct replacement for A and B in above snippet.
Answer Description Answer: See the explanation for Step by Step Solution and configuration. Explanation: Solution : A. NullWritable B. BytesWritable
Up-to-Date
We always provide up-to-date CCA175 exam dumps to our clients. Keep checking website for updates and download.
Excellence
Quality and excellence of our CCA Spark and Hadoop Developer Exam practice questions are above customers expectations. Contact live chat to know more.
Success
Your SUCCESS is assured with the CCA175 exam questions of passin1day.com. Just Buy, Prepare and PASS!
Quality
All our braindumps are verified with their correct answers. Download CCA Spark and Hadoop Developer Practice tests in a printable PDF format.
Basic
$80
Any 3 Exams of Your Choice
3 Exams PDF + Online Test Engine
Buy Now
Premium
$100
Any 4 Exams of Your Choice
4 Exams PDF + Online Test Engine
Buy Now
Gold
$125
Any 5 Exams of Your Choice
5 Exams PDF + Online Test Engine
Buy Now
Passin1Day has a big success story in last 12 years with a long list of satisfied customers.
We are UK based company, selling CCA175 practice test questions answers. We have a team of 34 people in Research, Writing, QA, Sales, Support and Marketing departments and helping people get success in their life.
We dont have a single unsatisfied Cloudera customer in this time. Our customers are our asset and precious to us more than their money.
CCA175 Dumps
We have recently updated Cloudera CCA175 dumps study guide. You can use our CCA Spark and Hadoop Developer braindumps and pass your exam in just 24 hours. Our CCA Spark and Hadoop Developer Exam real exam contains latest questions. We are providing Cloudera CCA175 dumps with updates for 3 months. You can purchase in advance and start studying. Whenever Cloudera update CCA Spark and Hadoop Developer Exam exam, we also update our file with new questions. Passin1day is here to provide real CCA175 exam questions to people who find it difficult to pass exam
CCA Spark and Hadoop Developer can advance your marketability and prove to be a key to differentiating you from those who have no certification and Passin1day is there to help you pass exam with CCA175 dumps. Cloudera Certifications demonstrate your competence and make your discerning employers recognize that CCA Spark and Hadoop Developer Exam certified employees are more valuable to their organizations and customers. We have helped thousands of customers so far in achieving their goals. Our excellent comprehensive Cloudera exam dumps will enable you to pass your certification CCA Spark and Hadoop Developer exam in just a single try. Passin1day is offering CCA175 braindumps which are accurate and of high-quality verified by the IT professionals. Candidates can instantly download CCA Spark and Hadoop Developer dumps and access them at any device after purchase. Online CCA Spark and Hadoop Developer Exam practice tests are planned and designed to prepare you completely for the real Cloudera exam condition. Free CCA175 dumps demos can be available on customer’s demand to check before placing an order.
What Our Customers Say
Jeff Brown
Thanks you so much passin1day.com team for all the help that you have provided me in my Cloudera exam. I will use your dumps for next certification as well.
Mareena Frederick
You guys are awesome. Even 1 day is too much. I prepared my exam in just 3 hours with your CCA175 exam dumps and passed it in first attempt :)
Ralph Donald
I am the fully satisfied customer of passin1day.com. I have passed my exam using your CCA Spark and Hadoop Developer Exam braindumps in first attempt. You guys are the secret behind my success ;)
Lilly Solomon
I was so depressed when I get failed in my Cisco exam but thanks GOD you guys exist and helped me in passing my exams. I am nothing without you.