Using pyspark to connect to PostgreSQL - postgresql
I am trying to connect to a database with pyspark and I am using the following code:
sqlctx = SQLContext(sc)
df = sqlctx.load(
url = "jdbc:postgresql://[hostname]/[database]",
dbtable = "(SELECT * FROM talent LIMIT 1000) as blah",
password = "MichaelJordan",
user = "ScottyPippen",
source = "jdbc",
driver = "org.postgresql.Driver"
)
and I am getting the following error:
Any idea why is this happening?
Edit: I am trying to run the code locally in my computer.
Download the PostgreSQL JDBC Driver from https://jdbc.postgresql.org/download/
Then replace the database configuration values by yours.
from pyspark.sql import SparkSession
spark = SparkSession \
.builder \
.appName("Python Spark SQL basic example") \
.config("spark.jars", "/path_to_postgresDriver/postgresql-42.2.5.jar") \
.getOrCreate()
df = spark.read \
.format("jdbc") \
.option("url", "jdbc:postgresql://localhost:5432/databasename") \
.option("dbtable", "tablename") \
.option("user", "username") \
.option("password", "password") \
.option("driver", "org.postgresql.Driver") \
.load()
df.printSchema()
More info: https://spark.apache.org/docs/latest/sql-data-sources-jdbc.html
The following worked for me with postgres on localhost:
Download the PostgreSQL JDBC Driver from https://jdbc.postgresql.org/download.html.
For the pyspark shell you use the SPARK_CLASSPATH environment variable:
$ export SPARK_CLASSPATH=/path/to/downloaded/jar
$ pyspark
For submitting a script via spark-submit use the --driver-class-path flag:
$ spark-submit --driver-class-path /path/to/downloaded/jar script.py
In the python script load the tables as a DataFrame as follows:
from pyspark.sql import DataFrameReader
url = 'postgresql://localhost:5432/dbname'
properties = {'user': 'username', 'password': 'password'}
df = DataFrameReader(sqlContext).jdbc(
url='jdbc:%s' % url, table='tablename', properties=properties
)
or alternatively:
df = sqlContext.read.format('jdbc').\
options(url='jdbc:%s' % url, dbtable='tablename').\
load()
Note that when submitting the script via spark-submit, you need to define the sqlContext.
It is necesary copy postgresql-42.1.4.jar in all nodes... for my case, I did copy in the path /opt/spark-2.2.0-bin-hadoop2.7/jars
Also, i set classpath in ~/.bashrc (export SPARK_CLASSPATH="/opt/spark-2.2.0-bin-hadoop2.7/jars" )
and work fine in pyspark console and jupyter
You normally need either:
to install the Postgres Driver on your cluster,
to provide the Postgres driver jar from your client with the --jars option
or to provide the maven coordinates of the Postgres driver with --packages option.
If you detail how are you launching pyspark, we may give you more details.
Some clues/ideas:
spark-cannot-find-the-postgres-jdbc-driver
Not able to connect to postgres using jdbc in pyspark shell
One approach, building on the example per the quick start guide, is this blog post which shows how to add the --packages org.postgresql:postgresql:9.4.1211 argument to the spark-submit command.
This downloads the driver into ~/.ivy2/jars directory, in my case /Users/derekhill/.ivy2/jars/org.postgresql_postgresql-9.4.1211.jar. Passing this as the --driver-class-path option gives the full spark-submit command of:
/usr/local/Cellar/apache-spark/2.0.2/bin/spark-submit\
--packages org.postgresql:postgresql:9.4.1211\
--driver-class-path /Users/derekhill/.ivy2/jars/org.postgresql_postgresql-9.4.1211.jar\
--master local[4] main.py
And in main.py:
from pyspark.sql import SparkSession
spark = SparkSession.builder.getOrCreate()
dataframe = spark.read.format('jdbc').options(
url = "jdbc:postgresql://localhost/my_db?user=derekhill&password=''",
database='my_db',
dbtable='my_table'
).load()
dataframe.show()
To use pyspark and jupyter notebook notebook: first open pyspark with
pyspark --driver-class-path /spark_drivers/postgresql-42.2.12.jar --jars /spark_drivers/postgresql-42.2.12.jar
Then in jupyter notebook
import os
jardrv = "~/spark_drivers/postgresql-42.2.12.jar"
from pyspark.sql import SparkSession
spark = SparkSession.builder.config('spark.driver.extraClassPath', jardrv).getOrCreate()
url = 'jdbc:postgresql://127.0.0.1/dbname'
properties = {'user': 'usr', 'password': 'pswd'}
df = spark.read.jdbc(url=url, table='tablename', properties=properties)
I had trouble to get a connection to the postgresDB with the jars i had on my computer.
This code solved my problem with the driver
from pyspark.sql import SparkSession
import os
sparkClassPath = os.environ['PYSPARK_SUBMIT_ARGS'] = '--packages org.postgresql:postgresql:42.1.1 pyspark-shell'
spark = SparkSession \
.builder \
.config("spark.driver.extraClassPath", sparkClassPath) \
.getOrCreate()
df = spark.read \
.format("jdbc") \
.option("url", "jdbc:postgresql://localhost:5432/yourDBname") \
.option("driver", "org.postgresql.Driver") \
.option("dbtable", "yourtablename") \
.option("user", "postgres") \
.option("password", "***") \
.load()
df.show()
I also get this error
java.sql.SQLException: No suitable driver
at java.sql.DriverManager.getDriver(Unknown Source)
and add one item .config('spark.driver.extraClassPath', './postgresql-42.2.18.jar') in SparkSession - that worked.
eg:
from pyspark import SparkContext, SparkConf
import os
from pyspark.sql.session import SparkSession
spark = SparkSession \
.builder \
.appName('Python Spark Postgresql') \
.config("spark.jars", "./postgresql-42.2.18.jar") \
.config('spark.driver.extraClassPath', './postgresql-42.2.18.jar') \
.getOrCreate()
df = spark.read \
.format("jdbc") \
.option("url", "jdbc:postgresql://localhost:5432/abc") \
.option("dbtable", 'tablename') \
.option("user", "postgres") \
.option("password", "1") \
.load()
df.printSchema()
This exception means jdbc driver does not in driver classpath.
you can spark-submit jdbc jars with --jar parameter, also add it into driver classpath using spark.driver.extraClassPath.
Download postgresql jar from here:
Add this to ~Spark/jars/ folder.
Restart your kernel.
It should work.
Just initialize pyspark with --jars <path/to/your/jdbc.jar>
E.g.: pyspark --jars /path/Downloads/postgresql-42.2.16.jar
then create a dataframe as suggested above in other answers
E.g.:
df2 = spark.read.format("jdbc").option("url", "jdbc:postgresql://localhost:5432/db").option("dbtable", "yourTableHere").option("user", "postgres").option("password", "postgres").option("driver", "org.postgresql.Driver").load()
Download postgres JDBC driver from https://jdbc.postgresql.org/download.html
and use the script below.
Changes to make:
Edit PATH_TO_JAR_FILE
Save your DB credentials in an environment file and load them
Query the DB using query option and limit using fetch size
import os
from pyspark.sql import SparkSession
PATH_TO_JAR_FILE = "/home/user/Downloads/postgresql-42.3.3.jar"
spark = SparkSession \
.builder \
.appName("Example") \
.config("spark.jars", PATH_TO_JAR_FILE) \
.getOrCreate()
DB_HOST = os.environ.get("PG_HOST")
DB_PORT = os.environ.get("PG_PORT")
DB_NAME = os.environ.get("PG_DB_CLEAN")
DB_PASSWORD = os.environ.get("PG_PASSWORD")
DB_USER = os.environ.get("PG_USERNAME")
df = spark.read \
.format("jdbc") \
.option("url", f"jdbc:postgresql://{DB_HOST}:{DB_PORT}/{DB_NAME}") \
.option("user", DB_USER) \
.option("password", DB_PASSWORD) \
.option("driver", "org.postgresql.Driver") \
.option("query","select * from your_table") \
.option('fetchsize',"1000") \
.load()
df.printSchema()
Related
Connnect to a postgres database on the localhost with pyspark
I am trying to connect to a postgres database with pyspark. My code looks as follows: from pyspark.sql import SparkSession spark = SparkSession \ .builder \ .appName("Python Spark SQL basic example") \ .config("spark.jars", "C:/Users/.../Documents/HWH/projecten/spark/postgresql-42.5.0.jar") \ .getOrCreate() df = spark.read \ .format("jdbc") \ .option("url", "jdbc:postgresql://localhost:5432/postgres") \ .option("dbtable", "chicago_crime") \ .option("user", "postgres") \ .option("password", "postgres") \ .option("driver", "org.postgresql.Driver") \ .load() df.printSchema() I keep getting the following error: Py4JJavaError: An error occurred while calling o128.load. : java.lang.ClassNotFoundException: org.postgresql.Driver at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:445) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:588) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) at ... It says the class is not found. Does this mean the path to the jar is not correctly specified? Anything would help!
create spark connection as part of python function
I am trying to create spark connection as part of spark_conn() function and use this connection throughout the other functions. For example in the below code, I am using spark connection created as part of spark_conn() function in read_data() function as below. Is my approach correct? from pyspark.sql import SparkSession def spark_conn(): spark = SparkSession \ .builder \ .appName("sparkConnection") \ .getOrCreate() return spark def read_data(spark, SNOWFLAKE_SOURCE_NAME, snowflake_options, loadtime, sftable): df = spark.read \ .format(SNOWFLAKE_SOURCE_NAME) \ .options(**snowflake_options) \ .option("query","SELECT * FROM sftable WHERE SNAPSHOT==loadtime") \ .load() if __name__=="__main__": conn = spark_conn() rd = read_data(conn, SNOWFLAKE_SOURCE_NAME, snowflake_options, loadtime, sftable)
Need a solution on connecting Teradata using Pyspark
I have a below code which will be used to connect the hadoop env with Teradata. sc = spark.sparkContext from pyspark.sql import SQLContext sqlContext = SQLContext(sc) df = sqlContext.read.format("jdbc").options(url="jdbc:teradata://teradata-dns-sysa.fg.rbc.com",driver="com.teradata.jdbc.TeraDriver",dbtable="table",user="userid",password="xxxxxxxx").load() Now the userid & password is different for different users. Hence looking out for a solution where credentials can be stored in a file in a secure location and the code simply refer to the data (userid & password) in the file
Here you can use property file where you can store required user id and password in file. You can refer properties file using argument parameter --properties-file file_name in command while running spark-submit command. Below is sample code for same. from pyspark.sql import SparkSession spark = SparkSession.builder \ .appName("Teradata Connect") \ .getOrCreate() sc = spark.sparkContext DB_DRIVER = sc._conf.get('spark.DB_DRIVER') JDBC_URL = sc._conf.get('spark.JDBC_URL') DB_USER = sc._conf.get('spark.DB_USER') DB_PASS = sc._conf.get('spark.DB_PASS') jdbcDF = (spark.read.format("jdbc").option("driver", DB_DRIVER) .option("url", JDBC_URL) .option("dbtable", "sql_query") .option("user", DB_USER) .option("password", DB_PASS) .load()) jdbcDF.show(10) Sample Properties file spark.DB_DRIVER com.teradata.jdbc.TeraDriver spark.JDBC_URL jdbc:teradata://teradata-dns-sysa.fg.rbc.com spark.DB_USER userid spark.DB_PASS password Spark submit command spark2-submit --master yarn \ --deploy-mode cluster \ --properties-file $CONF_FILE \ pyspark_script.py
Failed to find data source: com.mongodb.spark.sql.DefaultSource
I'm trying to connect spark (pyspark) to mongodb as follows: conf = SparkConf() conf.set('spark.mongodb.input.uri', default_mongo_uri) conf.set('spark.mongodb.output.uri', default_mongo_uri) sc = SparkContext(conf=conf) sqlContext = SQLContext(sc) spark = SparkSession \ .builder \ .appName("my-app") \ .config("spark.mongodb.input.uri", default_mongo_uri) \ .config("spark.mongodb.output.uri", default_mongo_uri) \ .getOrCreate() But when I do the following: users = spark.read.format("com.mongodb.spark.sql.DefaultSource") \ .option("uri", '{uri}.{col}'.format(uri=mongo_uri, col='users')).load() I get this error: java.lang.ClassNotFoundException: Failed to find data source: com.mongodb.spark.sql.DefaultSource I did the same thing from pyspark shell and I was able to retrieve data. This is the command I ran: pyspark --conf "spark.mongodb.input.uri=mongodb_uri" --conf "spark.mongodb.output.uri=mongodburi" --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2 But here we have the option to specify the package we need to use. But what about standalone apps and scripts. how can I configure mongo-spark-connector there. Any ideas?
Here how I did it in Jupyter notebook: 1. Download jars from central or any other repository and put them in directory called "jars": mongo-spark-connector_2.11-2.4.0 mongo-java-driver-3.9.0 2. Create session and write/read any data from pyspark import SparkConf from pyspark.sql import SparkSession from pyspark.sql.functions import * from pyspark.sql.types import * working_directory = 'jars/*' my_spark = SparkSession \ .builder \ .appName("myApp") \ .config("spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection") \ .config("spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection") \ .config('spark.driver.extraClassPath', working_directory) \ .getOrCreate() people = my_spark.createDataFrame([("JULIA", 50), ("Gandalf", 1000), ("Thorin", 195), ("Balin", 178), ("Kili", 77), ("Dwalin", 169), ("Oin", 167), ("Gloin", 158), ("Fili", 82), ("Bombur", 22)], ["name", "age"]) people.write.format("com.mongodb.spark.sql.DefaultSource").mode("append").save() df = my_spark.read.format("com.mongodb.spark.sql.DefaultSource").load() df.select('*').where(col("name") == "JULIA").show() As a result you will see this:
If you are using SparkContext & SparkSession, you have mentioned the connector jar packages in SparkConf, check the following Code: from pyspark import SparkContext,SparkConf conf = SparkConf().set("spark.jars.packages", "org.mongodb.spark:mongo-spark-connector_2.11:2.3.2") sc = SparkContext(conf=conf) from pyspark.sql import SparkSession spark = SparkSession.builder.appName("myApp") \ .config("spark.mongodb.input.uri", "mongodb://xxx.xxx.xxx.xxx:27017/sample1.zips") \ .config("spark.mongodb.output.uri", "mongodb://xxx.xxx.xxx.xxx:27017/sample1.zips") \ .getOrCreate() df = spark.read.format("com.mongodb.spark.sql.DefaultSource").load() df.printSchema() If you are using only SparkSession then use following code: from pyspark.sql import SparkSession spark = SparkSession.builder.appName("myApp") \ .config("spark.mongodb.input.uri", "mongodb://xxx.xxx.xxx.xxx:27017/sample1.zips") \ .config("spark.mongodb.output.uri", "mongodb://xxx.xxx.xxx.xxx:27017/sample1.zips") \ .config('spark.jars.packages', 'org.mongodb.spark:mongo-spark-connector_2.11:2.3.2') \ .getOrCreate() df = spark.read.format("com.mongodb.spark.sql.DefaultSource").load() df.printSchema()
If you're using the newest version of mongo-spark-connector, i.e. v10.0.1 at the time of writing this, you need to use SparkConf object, as stated by the mongo documentation (https://www.mongodb.com/docs/spark-connector/current/configuration/). Besides, you don't need to manually download anything, it will do it for you. Bellow is the solution I came up with, for : mongo-spark-connector: 10.0.1 mongo server : 5.0.8 spark : 3.2.0 def init_spark(): password = os.environ["MONGODB_PASSWORD"] user = os.environ["MONGODB_USER"] host = os.environ["MONGODB_HOST"] db_auth = os.environ["MONGODB_DB_AUTH"] mongo_conn = f"mongodb://{user}:{password}#{host}:27017/{db_auth}" conf = SparkConf() # Download mongo-spark-connector and its dependencies. # This will download all the necessary jars and put them in your $HOME/.ivy2/jars, no need to manually download them : conf.set("spark.jars.packages", "org.mongodb.spark:mongo-spark-connector:10.0.1") # Set up read connection : conf.set("spark.mongodb.read.connection.uri", mongo_conn) conf.set("spark.mongodb.read.database", "<my-read-database>") conf.set("spark.mongodb.read.collection", "<my-read-collection>") # Set up write connection conf.set("spark.mongodb.write.connection.uri", mongo_conn) conf.set("spark.mongodb.write.database", "<my-write-database>") conf.set("spark.mongodb.write.collection", "<my-write-collection>") # If you need to update instead of inserting : conf.set("spark.mongodb.write.operationType", "update") SparkContext(conf=conf) return SparkSession \ .builder \ .appName('<my-app-name>') \ .getOrCreate() spark = init_spark() df = spark.read.format("mongodb").load() df_grouped = df.groupBy("<some-column>").agg(mean("<some-other-column>")) df_grouped.write.format("mongodb").mode("append").save()
I was also facing same error "java.lang.ClassNotFoundException: Failed to find data source: com.mongodb.spark.sql.DefaultSource" while trying to connect to MongoDB from Spark (2.3). I had to download and copy mongo-spark-connector_2.11 JAR file(s) into jars directory of spark installation. That resolved my issue and I was successfully able to call my spark code via spark-submit. Hope it helps.
Here is how this error got resolved by downloading the jar files below. (Used the solution of this question.) 1.Downloaded the jar files below. mongo-spark-connector_2.11-2.4.1 from here mongo-java-driver-3.9.0 from here copy and paste both these jar files into 'jars' location in spark directory. Pyspark Code in jupiter notebook: import pyspark from pyspark.sql import SparkSession spark = SparkSession.builder.appName("mongo").\ config("spark.mongodb.input.uri","mongodb://127.0.0.1:27017/$database.$table_name").\ config("spark.mongodb.output.uri","mongodb://127.0.0.1:27017/$database.$table_name").\ getOrCreate() df=spark.read.format('com.mongodb.spark.sql.DefaultSource')\ .option( "uri", "mongodb://127.0.0.1:27017/$database.$table_name") \ .load() df.printSchema() #create Temp view of df to view the data table = df.createOrReplaceTempView("df") #to read table present in mongodb query1 = spark.sql("SELECT * FROM df ") query1.show(10)
You are not using sc to create the SparkSession. Maybe this code can help you: conf.set('spark.mongodb.input.uri', mongodb_input_uri) conf.set('spark.mongodb.input.collection', 'collection_name') conf.set('spark.mongodb.output.uri', mongodb_output_uri) sc = SparkContext(conf=conf) spark = SparkSession(sc) # Using the context (conf) to create the session
kafka to pyspark structured streaming, parsing json as dataframe
I am experimenting with spark structured streaming (spark v2.2.0) to consume json data from kafka. However I encountered the following error. pyspark.sql.utils.StreamingQueryException: 'Missing required configuration "partition.assignment.strategy" which has no default value. Does anyone know why? The job was submitted using spark-submit below. spark-submit --packages org.apache.spark:spark-sql-kafka-0-10_2.11:2.2.0 sparksstream.py This is the entire python script. from pyspark.sql import SparkSession from pyspark.sql.functions import * from pyspark.sql.types import * spark = SparkSession \ .builder \ .appName("test") \ .getOrCreate() # Define schema of json schema = StructType() \ .add("Session-Id", StringType()) \ .add("TransactionTimestamp", IntegerType()) \ .add("User-Name", StringType()) \ .add("ID", StringType()) \ .add("Timestamp", IntegerType()) # load data into spark-structured streaming df = spark \ .readStream \ .format("kafka") \ .option("kafka.bootstrap.servers", "xxxx:9092") \ .option("subscribe", "topicName") \ .load() \ .select(from_json(col("value").cast("string"), schema).alias("parsed_value")) # Print output query = df.writeStream \ .outputMode("append") \ .format("console") \ .start()
use this instead to submit: spark-submit \ --conf "spark.driver.extraClassPath=$SPARK_HOME/jars/kafka-clients-1.1.0.jar" \ --packages org.apache.spark:spark-sql-kafka-0-10_2.11:2.2.0 \ sparksstream.py Assuming that you have donwloaded the kafka-clients*jar in you $SPARK_HOME/jars folder