How to read from SQL table in PySpark using a query instead of specifying a table
When we know precisely what query we should run to get the data we want from a SQL database, we don’t need to load multiple tables in PySpark, and emulate the joins and selects in the Python code. Instead of that, we can pass the SQL query as the source of the DataFrame while retrieving it from the database.
If my code to retrieve the data looks like this:
1
2
3
4
5
6
df = spark.read \
.format("jdbc") \
.option("url", "jdbc:mysql://localhost:port") \
.option("dbtable", "schema.tablename") \
...
.load()
I can replace the dbtable
parameter with a SQL query and use the result as the table loaded by PySpark:
1
.option("dbtable", "(SELECT column_A, column_B FROM some_table) AS tbl")
You may also like
- What is the difference between CUBE and ROLLUP and how to use it in Apache Spark?
- Use regexp_replace to replace a matched string with a value of another column in PySpark
- How to add dependencies as jar files or Python scripts to PySpark
- How to flatten a struct in a Spark DataFrame?
- Speed up counting the distinct elements in a Spark DataFrame
Remember to share on social media! If you like this text, please share it on Facebook/Twitter/LinkedIn/Reddit or other social media.
If you want to contact me, send me a message on LinkedIn or Twitter.
Would you like to have a call and talk? Please schedule a meeting using this link.