Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider 3 files warc.csv , wat.csv and we . csv . Consider a warc.csv file related data. An indicative line is: 2 0 1 7
Consider files warc.csv wat.csv and wecsv
Consider a warc.csv file related data. An indicative line is:
T::Z urn:coco, response,
http:coco, Apache, html
Columns in order: first the warc date, the warc record id the warc type eg metadata,
response, etc the content length, the public IP address, the target URL, the server running
the site eg apache, nginx, etc and finally the overall content of the page with the entire
HTML DOM.
Consider a wat.csv file related data. An indicative line is:
urn:uuid, http:coco
In order the columns are: first the warc record id the content length of the metadata, and
finally the target URL it can be different from the target URL of the warc data
Consider a wet.csv file related data. An indicative line is:
urn:uuid, "extracted plaintext"
In order the columns are: first the warc record id and then the extracted plaintext from the
url can be in ascii
Using RDDs write a Pyhton code to answer the following.
Task :
For each server used, find the average content length of warc records as well as the average
content length of their metadata print the top servers with the largest content size
Tips: You will need to join datasets to get the desired result.
For this query you will need to filter out the records that have null values.
Remember to restart the Spark cluster before each measurement, to avoid hot caches, or
you can clear the cache.
Perform Task using DataFramesSpark SQL and parquet file
Task :
Please give instruction on how to measure the execution time for Task:
MapReduceRDD API
Spark SQL to CSV files you need to define the schema of each file
Spark SQL to parquet file
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started