Quiz Space

September 2023 term · Introduction to Big Data · BSDA5001

Intro to Big Data End Term: 24 December 2023 (September 2023 term)

The IIT Madras BS Introduction to Big Data (Intro to Big Data) End Term paper sat on 24 Dec 2023, in the September 2023 term: 23 questions for 50 marks in 180 minutes. Every question is below with its answer. Take it as a timed mock test to be marked, or read it through first.

Questions
23
Marks
50
Duration
180 min
MCQ
22
MSQ
1

Updated

Official paper: IIT M DEGREE AN EXAM ADB3 24 Dec 2023 · No negative marking.

Question 1

+2 marksOne correct option

What happens when a Spark Structured Streaming pipeline operating with Kafka as source is subject to a failure of a machine in either of the Kafka cluster or the Spark cluster?

  1. A

    Failure of a machine in the Kafka cluster will result in an Exception in the Spark pipeline which will then fail and halt.

  2. B

    The Spark pipeline will not be able to start again from previously committed offset by restarting itself, resulting in at least-once processing semantics

  3. C

    Irrespective of whatever machine fails, Spark will throw an error and halt.

  4. D

    The pipeline will be restarted automatically by Spark which is able to pick up the exact data from Kafka which was being processed at the time of error, resulting in exactly- once semantics.

  5. E

    Data that is being processed will not be processed again, resulting in atmost- once semantics.

Show answer

Correct answer

  • D

    The pipeline will be restarted automatically by Spark which is able to pick up the exact data from Kafka which was being processed at the time of error, resulting in exactly- once semantics.

Question 2

+2 marksOne correct option

A big data streaming application that uses Kafka as source is observed to be really slow. The Kafka cluster has 2 broker nodes and this application is reading from 1 topic that has 10 partitions. On closer investigation, it was found that Kafka is not scaling to the velocity of input data coming in. What can you first try to do to scale Kafka further while incurring minimal costs?

  1. A

    Add disks to each broker in the cluster, and disks are the cheapest computer component

  2. B

    Add new brokers to the cluster, even though this is more expensive than the other options this is the only foolproof way to scale.

  3. C

    Increase memory in each of the brokers in the cluster. While cost of memory is more than cost of disks, it is still cheaper than adding brokers and helps to scale.

  4. D

    Create more topics and change input application to reroute data to all topics to be able to spread input data better. This is nearly the least expensive since only developer effort is required to change application.

  5. E

    Double the number of partitions for this single topic to be able to spread input data better. This is the least expensive since only administrator effort is required without changing application.

Show answer

Correct answer

  • C

    Increase memory in each of the brokers in the cluster. While cost of memory is more than cost of disks, it is still cheaper than adding brokers and helps to scale.

Question 3

+2 marksOne correct option

A company with headquarters (HQ) in the Middle East operates on a Sunday-Thursday weekday schedule with Friday & Saturday as weekend days. It computes end of week revenue numbers using an ETL pipeline by first computing sales for each day at 1AM local time of the next day, and then summing up the weekly sales every Sunday early morning at 3AM local time. This number gets reported to leadership every Sunday morning 9AM local time, so the ETL pipeline is scheduled to run every Sunday morning at 8AM local time. As a result of management change, it has decided to relocate its HQ to India. Which of the following changes will need to be done to its ETL pipeline to ensure the correct output continues to be produced?

  1. A

    The business time for the final weekly sum operation needs to be changed to that of Monday 3AM India time instead of Sunday 3AM Middle East time.

  2. B

    Since time zone has changed as well as week definition too, the definition of business time has changed. So, the ETL has to be rewritten entirely.

  3. C

    Nothing needs to change since daily sales is available at 1AM Middle East time which is anyway behind India time and so the numbers will be available before leadership comes in at 9AM.

  4. D

    Event time has changed since the event of week ending has changed in definition, and so the ETL needs to be changed to consider the new event in the data.

  5. E

    No change required since neither event time nor business time is changing whereas only the operational time is changing.

Show answer

Correct answer

  • E

    No change required since neither event time nor business time is changing whereas only the operational time is changing.

Question 4

+2 marksOne correct option

You are appointed as a Data Engineer in a company that has a legacy reporting application written in Java which suffers from performance problems. The reporting application plots dashboards with near real-time refresh (once every minute) of key business indicators to help management take live decisions. The application reads data directly from the source database of MongoDB, aggregates using simple counts and shows them visually in a UI. The performance problem of this application comes because the source database is at times overloaded and therefore the dashboard is not able to refresh fast enough. Choose from the options below the option that best addresses performance with minimal maintenance effort:

  1. A

    Since MongoDB is OLTP, it is not able to support business reporting. So, replace it with Hadoop which supports OLAP better

  2. B

    Convert the application from using plain Java to using Spark Streaming in Java

  3. C

    Query MongoDB every 1 minute for new data using a check on document inserted timestamp, use Spark Streaming to compute the KPIs with the queried data, and then populate into a NoSQL DB like Redis for the UI to consume.

  4. D

    Extract raw data from MongoDB using Change Data Capture (CDC) once every minute into Kafka, and then use Spark Streaming to compute the KPIs and then populate into a NoSQL DB like Redis for the UI to consume.

  5. E

    Convert application to using Python along with a NoSQL database for storing and retrieving the aggregated counts.

Show answer

Correct answer

  • D

    Extract raw data from MongoDB using Change Data Capture (CDC) once every minute into Kafka, and then use Spark Streaming to compute the KPIs and then populate into a NoSQL DB like Redis for the UI to consume.

Question 5

+2 marksOne correct option

Dhoni is on the crease with a bat in hand that has sensors embedded throughout. The sensors talk to the spider cam every second. The spider cam is itself a powerful ARM-based computer which has connectivity to the cloud through the wire on which it hangs. Using this connectivity, it can send as much or as little data as required and also receive instructions from the cloud. There is a machine learning model which suggests to the batsman to loosen the grip on his bat or tighten it based on the shots played using the sensor measurements. The way the suggestion happens is using dynamic vibration intensity communicated to the sensors embedded in the bat handle. Your task is to design the data pipeline that enables such feedback to Dhoni ideally before every ball with as much accuracy as possible throughout the match. Which of the following options best satisfies the requirements?

  1. A

    Ingest all data into Pub/Sub, process using Google Cloud Dataflow, invoke the ML model, and then write back output from Cloud to the spider cam to relay to the bat.

  2. B

    Compress the ML model to fit into the spider cam’s available resource, and write pipelines to execute the model in the spider cam itself

  3. C

    Compress the data in the spider cam every 5 seconds, write to Pub/Sub the compressed data, invoke the ML model and then write back output from Cloud to the spider cam to relay to the bat.

  4. D

    Compress the ML model to fit into the spider cam’s available resource, and write pipelines to execute in the spider cam itself, with periodically data being sent to the cloud, retrain the model using Google Cloud ML and then redeploy the model to the spider cam.

Show answer

Correct answer

  • D

    Compress the ML model to fit into the spider cam’s available resource, and write pipelines to execute in the spider cam itself, with periodically data being sent to the cloud, retrain the model using Google Cloud ML and then redeploy the model to the spider cam.

Question 6

+2 marksOne correct option

In the class, we saw the UDF for mobilenet_v2. By definition, UDFs are scalar. In Spark, there is another class of user defined routines called UDAFs, which stand for User Defined Aggregator Functions. UDAFs are meant to provide a means to write a custom aggregation function which aggregates over a grouping of values to arrive at a single value. UDAF structure differs saliently from UDFs in that it exposes the notion of a buffer as a way of maintaining intermediate state before finalizing aggregate output. Why is a buffer required for UDAF and not for a UDF?

  1. A

    A UDF is a scalar operation executing on 1 row at a time and producing output immediately, and therefore there is no intermediate output necessary. Whereas, a UDAF operates on multiple rows which will require multiple passes for the final output thereby requiring a buffer.

  2. B

    A UDF is a scalar operation executing on many rows at a time, grouped by a key and producing a single output, and therefore there is no intermediate output necessary. Whereas, a UDAF operates on multiple rows which will require multiple passes for the final output thereby requiring a buffer.

  3. C

    A UDF is a scalar operation executing on 1 row at a time and producing output immediately, and therefore there is no intermediate output necessary. Whereas, a UDAF operates on multiple rows of unbounded size requiring a divide-and-conquer approach for computing aggregates, which uses the intermediate buffer to store partial values before finalizing the result aggregate.

  4. D

    A UDF is a scalar operation executing on many rows at a time, grouped by a key and producing a single output, and therefore there is no intermediate output necessary. Whereas, a UDAF operates on multiple rows of unbounded size requiring a divide-and-conquer approach for computing aggregates, which uses the intermediate buffer to store partial values before finalizing the result aggregate.

Show answer

Correct answer

  • C

    A UDF is a scalar operation executing on 1 row at a time and producing output immediately, and therefore there is no intermediate output necessary. Whereas, a UDAF operates on multiple rows of unbounded size requiring a divide-and-conquer approach for computing aggregates, which uses the intermediate buffer to store partial values before finalizing the result aggregate.

Question 7

+2 marksOne correct option
  1. A

    Yes, since they check the syntax of the model function so that there are no errors

  2. B

    They invoke PyTorch libraries that have already been setup for model scoring on GCP using APIs embedded within the function

  3. C

    No, since the primary function of these lines of code is to eliminate repeated DL model loads as DL models are large in size but with XGboost this isn’t required since model load time is negligible

  4. D

    They are Map-style UDFs that make it an embarrassingly parallel computation thus making the execution parallelized and fast.

Show answer

Correct answer

  • C

    No, since the primary function of these lines of code is to eliminate repeated DL model loads as DL models are large in size but with XGboost this isn’t required since model load time is negligible

Question 8

+2 marksOne correct option

You are given a Spark Streaming pipeline that invokes a pre-trained DL model for every image it receives as input and produces the classification result in quick time. The model with the best recall rate from the PyTorch library already runs in under 3 seconds on an average executing on a single GPU Spark worker machine. However, your management has instructed you to reduce the cost of AI projects significantly. What is the best option to explore to meet the expectations without compromising on false negatives while also being within 10-20% of the average execution time?

  1. A

    Use a different DL model from PyTorch that is already compressed to half the size.

  2. B

    Build a custom model that compresses the highest recall rate model just enough to be able to execute within the stipulated time, and measure recall.

  3. C

    Remove complexity associated with Spark Streaming and convert the model execution pipeline into a single threaded Python application running on the same GPU machine.

  4. D

    Change Spark machine to use CPUs and train a fresh pipeline to achieve objectives.

Show answer

Correct answer

  • D

    Change Spark machine to use CPUs and train a fresh pipeline to achieve objectives.

Question 9

+2 marksOne correct option

Which of the following code snippets will give a runtime error? (Note: df is a spark dataframe. It has a column called content which has images represented as byte array)

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 10

+2 marksOne correct option

Consider a Structured Streaming application running on Google Dataproc firing up every 10 seconds, consuming any number of records from Kafka available since last read, and emitting some computed answers to another Kafka topic. Consider also that apart from the functional logic, the same application is also emitting into a file the start time and end time of every batch invocation for audit purposes.
Assume there is a failure in one of the Dataproc machines that results in a failure of a specific run. For the external world (i.e. anybody consuming the outputs of this application), will they see any change in output as a result of the failure at all, or will the only impact of failure be one of slower performance for the failed-and-retried run? Pick the ones from the list below that answer this question.

  1. A

    No, the failure is not visible. The only visible effect for the external world would be in the form of a slowdown in runtime for completion of that batch as Structured Streaming retries the batch that failed thus taking twice as much time as normal.

  2. B

    No, no failure is visible since Structured Streaming uses transactions and idempotence to achieve exactly-once processing.

  3. C

    Yes, the failure is visible because the side effect of emitting timestamps in a batch will be visible as 2 consecutive Start timestamps without any end timestamp as Structured Streaming retries the failed batch.

  4. D

    No, no failure is visible since Structured Streaming can process the same data in a retry resulting in the same outputs again.

Show answer

Correct answer

  • C

    Yes, the failure is visible because the side effect of emitting timestamps in a batch will be visible as 2 consecutive Start timestamps without any end timestamp as Structured Streaming retries the failed batch.

Question 11

+2 marksOne correct option

Let us say we are using structured streaming for continuously reading data from Kafka and storing the results back into a Kafka topic using window function aggregates. Now, instead, we decide that we need to just perform a one-time batch operation using the same logic, where there is a need to read specific data from Kafka (i.e. using pre-determined offsets). How will we need to modify the code to make it work?

  1. A

    The read and write commands will remain the same, but the remaining code will need to be modified, as operations on streaming dataframes are not supported on static dataframes.

  2. B

    Only the read and write commands need to be modified to specify that it's a batch operation.

  3. C

    The entire code will need to be modified as the APIs for stream and batch processing are completely different.

  4. D

    The read and write commands need to be modified to specify that it’s a batch operation. Further, the specific logic of window functions will also need to be modified since there are no time windows anymore in batch processing.

Show answer

Correct answer

  • B

    Only the read and write commands need to be modified to specify that it's a batch operation.

Question 12

+2 marksOne correct option

Kubernetes is an open-source system for automating deployment, scaling and management of containerized applications. Google Datastore and HBase are both highly-scalable NoSQL database systems for interactive, real-time applications. Consider the following pipeline choices for effecting the same outcome:
(i) Shell producer on VM on GCP → Pub/Sub → Spark Streaming on Hadoop VMs on GCP → HBase on same Hadoop VMs on GCP
(ii) Shell producer in Google Cloud Function → Kafka VM on GCP → Dataflow → Datastore (iii) Shell producer in Kubernetes on GCP → Pub/Sub → Spark Streaming on Google Dataproc → Datastore
(iv) Shell producer on VM on GCP → Pub/Sub → Dataflow → Datastore
(v) Shell producer in Kubernetes on GCP → Pub/Sub → Spark Streaming on Hadoop VMs on GCP → HBase on same Hadoop VMs on GCP
Which option below represents the correct order of pipeline options that has the “most IaaS” entry to the left and the “most PaaS” entry to the right?

  1. A

    (i), (v), (iii), (iv), (ii)

  2. B

    (i), (ii), (iii), (iv), (v)

  3. C

    (ii), (iii), (i), (iv), (v)

  4. D

    (v), (iii), (i), (iv), (ii)

  5. E

    All are equally PaaS / IaaS

Show answer

Correct answer

  • A

    (i), (v), (iii), (iv), (ii)

Question 13

+2 marksOne correct option

Since it is the onset of summer, there is a surge in railway ticket bookings. The business head at IRCTC is interested in a real-time view of all of her stations irrespective of whether there were bookings or not. She wants to see this be presented in a monitor mounted in her office wall that refreshes with the latest info on an India map every 1 minute along with the time of update so that she gets the confirmation that this is the latest data, so that she can plan for new summer- special trains as required. What solution option below best solves for the need?

  1. A

    Route a copy of the ticket purchase to a Kafka topic, use Spark Structured Streaming to continuously read from this topic and update the aggregates by destinations, and emit using output mode “Update”.

  2. B

    Route a copy of the ticket purchase to a Kafka topic, use Spark Structured Streaming to periodically read from this topic every 1 minute and update the aggregates by destinations, and emit all aggregates using the output mode “Complete”.

  3. C

    Route a copy of the ticket purchase to a Kafka topic, use Spark Structured Streaming to periodically read from this topic every 1 minute and count the destinations in that batch, and emit only all aggregates in that batch using the output mode “Append”.

Show answer

Correct answer

  • B

    Route a copy of the ticket purchase to a Kafka topic, use Spark Structured Streaming to periodically read from this topic every 1 minute and update the aggregates by destinations, and emit all aggregates using the output mode “Complete”.

Question 14

+2 marksOne correct option

In a streaming application, what is the purpose of dynamic scaling, and how does it contribute to resource utilization?

  1. A

    Dynamic scaling adjusts the number of partitions dynamically based on data volume, optimizing resource usage.

  2. B

    It helps in controlling the frequency of data persistence in the streaming application.

  3. C

    Dynamic scaling is necessary for managing backpressure in the system.

  4. D

    It optimizes the execution plan of Spark SQL queries for better performance.

Show answer

Correct answer

  • A

    Dynamic scaling adjusts the number of partitions dynamically based on data volume, optimizing resource usage.

Question 15

+2 marksOne correct option

When designing a Spark Structured Streaming application with windowed aggregations, what is the significance of the watermark?

  1. A

    The watermark defines the maximum allowed lateness for events.

  2. B

    It controls the frequency of checkpointing in the streaming application.

  3. C

    The watermark is a timestamp indicating the current processing time.

  4. D

    It specifies the size of the time window for aggregations.

Show answer

Correct answer

  • A

    The watermark defines the maximum allowed lateness for events.

Question 16

+2 marksOne correct option

Which of the following callbacks is used to handle successful message sends?

  1. A

    on_completion

  2. B

    on_failure

  3. C

    on_acknowledge

  4. D

    on_success

Show answer

Correct answer

  • A

    on_completion

Question 17

+2 marksOne correct option

What is the purpose of the group_id parameter in the KafkaConsumer constructor?

  1. A

    It specifies the Kafka topic to consume messages from.

  2. B

    It uniquely identifies the consumer group to which the consumer belongs.

  3. C

    It defines the deserialization format for consumer records.

  4. D

    It sets the maximum number of records to be polled in each request.

Show answer

Correct answer

  • B

    It uniquely identifies the consumer group to which the consumer belongs.

Question 18

+2 marksOne correct option

What does the provided partitioner lambda function do?

  1. A

    It uses the default partitioning strategy.

  2. B

    It forces all records to be sent to partition 0.

  3. C

    It dynamically selects the partition based on the key value.

  4. D

    It partitions records based on a round-robin distribution.

Show answer

Correct answer

  • C

    It dynamically selects the partition based on the key value.

Question 19

+2 marksOne correct option

You are responsible for a Spark Streaming application that processes data from Kafka and provides real-time analytics. Currently, the application runs on a cluster managed by your team. The business stakeholders have expressed a need for more flexibility in adjusting the processing interval and want to explore options for real-time or near-real-time processing. Which of the following options is the best choice to meet the business requirements?

  1. A

    Modify the existing Spark Streaming code to run every 5 minutes and deploy it on the existing cluster.

  2. B

    Rewrite the application using Spark Structured Streaming and allow the business stakeholders to configure the processing interval.

  3. C

    Develop a Cloud Function to trigger the Spark Streaming job every 5 minutes and deploy it on a cloud platform.

  4. D

    Convert the Spark Streaming application to use Apache Flink for better real- time processing capabilities.

Show answer

Correct answer

  • B

    Rewrite the application using Spark Structured Streaming and allow the business stakeholders to configure the processing interval.

Question 20

+3 marksOne correct option
  1. A

    Each subscriber gets one third of all messages published into Topic 1.

  2. B

    Publisher 1 can safely send data only for Subscriber 1’s consumption while restricting access to Subscribers 2 & 3.

  3. C

    Subscriber 2 gets all messages published into Topic 1 by Publisher 1 but only half of Publisher 2’s messages.

  4. D

    Each subscriber gets all messages published into Topic 1.

Show answer

Correct answer

  • D

    Each subscriber gets all messages published into Topic 1.

Question 21

+3 marksOne correct option

A Spark Streaming application is configured to execute once per minute. However, each run takes 10+ minutes consistently resulting in a never-ending backlog of work. The code in a nutshell looks as follows:

python
clicks = ( # schema - adId: String, clickTime: Timestamp, ...
spark
.readStream
.format("kafka")
.option("subscribe", "clicks")
…
.load()
)
clicks
.join(pages, “pageId”)
.groupBy(“pageName”)
.count()

Your goal is to optimize the code to bring down execution of each iteration within 1 minute. Which of the following represent options that will help in this mission?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 22

+3 marksOne correct option

You are given a Spark program that runs on a Google Dataproc cluster on a daily schedule from 1AM-12PM to produce as output the total amount of purchases made by every customer the previous day. The data is coming into GCS every minute from a variety of sources as standalone files. Therefore, the business leader now feels that having to wait till 12PM the next day is no longer acceptable and instead wants approximate purchase information for each customer at least every 5 minutes. What’s more, she wants to be able to change this time window later as she pleases without involving you. Which amongst the below represents the best option to achieve the above?

  1. A

    Change the code to run every 5 minutes, no other change required

  2. B

    Change the code to leverage Spark Streaming with streaming window as “5 minutes”, & let her manage the execution of the code on Dataproc

  3. C

    Write a Cloud Function to move all incoming per-minute standalone files from GCS to Pub/Sub, change the code to leverage Spark Streaming with streaming window as “5 mins”, convert from Dataproc to Dataflow, point source to Pub/Sub, & let her manage the execution of the code on Dataflow

  4. D

    Change the code to leverage Spark Streaming with streaming window as “5 minutes”, convert from Dataproc to Dataflow, & let her manage the execution of the code on Dataflow

Show answer

Correct answer

  • D

    Change the code to leverage Spark Streaming with streaming window as “5 minutes”, convert from Dataproc to Dataflow, & let her manage the execution of the code on Dataflow

Question 23

+3 marksOne or more correct options

Which of the following are best practices associated with Streaming applications?

Select all that apply.

  1. A

    Use a message store that supports message replay so that no data is lost in processing.

  2. B

    “Hot potato” principle is when the streaming application operates on data from cache (i.e. the hot area of memory) and therefore is able to produce very high throughput

  3. C

    Hadoop is best suited for executing Streaming applications

  4. D

    Use checkpointing when faced with mission-critical workloads that require 100% accuracy.

  5. E

    Handle state pollution by restarting the persistent store software periodically.

Show answer

Correct answers

  • A

    Use a message store that supports message replay so that no data is lost in processing.

  • D

    Use checkpointing when faced with mission-critical workloads that require 100% accuracy.