Skip to content

Instantly share code, notes, and snippets.

@corneliouzbett
Created March 17, 2019 06:27
Show Gist options
  • Save corneliouzbett/b1b9212c3dc189c3e91375447529796a to your computer and use it in GitHub Desktop.
Save corneliouzbett/b1b9212c3dc189c3e91375447529796a to your computer and use it in GitHub Desktop.
JDBC to other database sources
# 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