标签:orm l数据库 img 驱动程序 inf jar cal ESS 连接
1.安装启动检查Mysql服务。
netstat -tunlp (3306)
2.spark 连接mysql驱动程序。
–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars
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()
标签:orm l数据库 img 驱动程序 inf jar cal ESS 连接
原文地址:https://www.cnblogs.com/DDCWJ/p/14829343.html