MySql教程

09 spark连接mysql数据库

本文主要是介绍09 spark连接mysql数据库,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.安装启动检查Mysql服务。

2.spark 连接mysql驱动程序。

–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars

netstat -tunlp (3306)

 

 

 

 

 3.启动 Mysql shell,新建数据库spark,表student。
select * from student;

 

 

 

 

4.spark读取MySQL数据库中的数据
spark.read.format("jdbc").option("url", "jdbc:mysql://localhost:3306/spark?useSSL=false") ...  .load()

 

 

5.spark向MySQL数据库写入数据
studentDF.write.format(‘jdbc’).option(…).mode(‘append’).save() 

 

写入并再次查看student表

这篇关于09 spark连接mysql数据库的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!