spark连接mysql数据库

1.安装启动检查Mysql服务。
netstat -tunlp (3306) 

spark连接mysql数据库

 

2.spark 连接mysql驱动程序。
–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars

spark连接mysql数据库

 

 spark连接mysql数据库

 

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

spark连接mysql数据库

 

 spark连接mysql数据库

 

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

spark连接mysql数据库

 

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

spark连接mysql数据库

 

spark连接mysql数据库

1.安装启动检查Mysql服务。
netstat -tunlp (3306) 

spark连接mysql数据库

 

2.spark 连接mysql驱动程序。
–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars

spark连接mysql数据库

 

 spark连接mysql数据库

 

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

spark连接mysql数据库

 

 spark连接mysql数据库

 

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

spark连接mysql数据库

 

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

spark连接mysql数据库

 

spark连接mysql数据库

spark连接mysql数据库

上一篇:WPF时间转Command


下一篇:Dev中实现给GridControl下的GridView表格修改指定行、列的背景颜色和获取选择行的信息