Spark 2 Workbook Answers Info

– bulk HTTP calls:

Add a short paragraph for each stage, explaining why you chose that API.

## 7. Putting It All Together – A Mini‑Project Blueprint

---

| Tip | How to Apply | |-----|--------------| | **Show Spark’s lazy evaluation** | Mention that transformations build a DAG, actions trigger execution. | | **Explain the physical plan** | Use `df.explain()` in a note to demonstrate understanding of shuffle, broadcast, etc. | | **State assumptions** | “Assume the input file fits in HDFS and each line is a UTF‑8 string.” | | **Edge‑case handling** | Talk about empty files, null values, or malformed CSV rows. | | **Performance hints** | Suggest `repartition` before a heavy shuffle or using `broadcast` for small lookup tables. | | **Testing** | Show a tiny local test (e.g., `sc.parallelize(["a b","b c"]).flatMap(...).collect()`). | | **Clean code** | Use meaningful variable names, consistent indentation, and short comments. |

# 3️⃣ Keep only unique words distinct_words = words.distinct()

## 8. Final Checklist Before Submitting

```python from pyspark import SparkContext

val spark = SparkSession.builder() .appName("DeptSalary") .getOrCreate()

# 4️⃣ Action – trigger the computation and collect the count unique_word_count = distinct_words.count() spark 2 workbook answers

words = lines.flatMap(lambda line: line.split()) # optional cleaning cleaned = words.map(lambda w: w.lower().strip('.,!?"\'')) distinct_words = cleaned.distinct() count = distinct_words.count()

print(f"Unique words: unique_word_count")

## 5. Tips for Maximising Marks

sc = SparkContext(appName="DistinctWordCount")