Get startedGet started for free

Prepare for transformations

As mentioned in the video, before you can do transformations using PySpark, you need to get the data into the Spark framework. You saw how to do this using PySpark. Can you choose the correct code?

(A)

spark.read.jdbc("jdbc:postgresql://repl:password@localhost:5432/pagila",
                "customer")

(B)

spark.read.jdbc("jdbc:postgresql://localhost:5432/pagila",
                "customer",
                {"user":"repl","password":"password"})

(C)

spark.read.jdbc("jdbc:postgresql://repl:password@localhost:5432/pagila/customer")

This exercise is part of the course

Introduction to Data Engineering

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise