Created
March 17, 2019 06:27
-
-
Save corneliouzbett/b1b9212c3dc189c3e91375447529796a to your computer and use it in GitHub Desktop.
JDBC to other database sources
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Loading data for JDBC source | |
jdbcDF = spark.read\ | |
.format("jdbc")\ | |
.option("url", "jdbc:postgresql:dbserver")\ | |
.option("dbtable", "schema.tablename") \ | |
.option("user", "username") \ | |
.option("password", "password") \ | |
.load() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment