Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Data Engineering with Scala and Spark

You're reading from  Data Engineering with Scala and Spark

Product type Book
Published in Jan 2024
Publisher Packt
ISBN-13 9781804612583
Pages 300 pages
Edition 1st Edition
Languages
Authors (3):
Eric Tome Eric Tome
Profile icon Eric Tome
Rupam Bhattacharjee Rupam Bhattacharjee
Profile icon Rupam Bhattacharjee
David Radford David Radford
Profile icon David Radford
View More author details

Table of Contents (21) Chapters

Preface Part 1 – Introduction to Data Engineering, Scala, and an Environment Setup
Chapter 1: Scala Essentials for Data Engineers Chapter 2: Environment Setup Part 2 – Data Ingestion, Transformation, Cleansing, and Profiling Using Scala and Spark
Chapter 3: An Introduction to Apache Spark and Its APIs – DataFrame, Dataset, and Spark SQL Chapter 4: Working with Databases Chapter 5: Object Stores and Data Lakes Chapter 6: Understanding Data Transformation Chapter 7: Data Profiling and Data Quality Part 3 – Software Engineering Best Practices for Data Engineering in Scala
Chapter 8: Test-Driven Development, Code Health, and Maintainability Chapter 9: CI/CD with GitHub Part 4 – Productionalizing Data Engineering Pipelines – Orchestration and Tuning
Chapter 10: Data Pipeline Orchestration Chapter 11: Performance Tuning Part 5 – End-to-End Data Pipelines
Chapter 12: Building Batch Pipelines Using Spark and Scala Chapter 13: Building Streaming Pipelines Using Spark and Scala Index Other Books You May Enjoy

Introducing TDD

TDD is a topic that is broad and deserves its own book. However, we will cover the basics so that you can apply TDD to your Scala data engineering projects.

One essential aspect of TDD in data engineering is testing the data transformations and manipulations within the pipelines you create. This involves creating unit tests that verify the correctness and accuracy of data transformations, aggregations, filters, and other data manipulation operations. Unit tests also ensure the code you create or change doesn’t break any existing processes that were previously created by you or anyone else on your team.

To accomplish this, it is important to develop code that is easily testable. You can do this by creating functions that perform one action and then composing multiple functions together to build your applications. Doing so will help to maintain code health and maintainability because you have small functions that make refactoring those functions easy.

...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}