91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spark sql怎么連接和使用mysql數據源

發布時間:2021-08-05 09:57:15 來源:億速云 閱讀:361 作者:chen 欄目:云計算

這篇文章主要介紹“spark sql怎么連接和使用mysql數據源”,在日常操作中,相信很多人在spark sql怎么連接和使用mysql數據源問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”spark sql怎么連接和使用mysql數據源”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

spark sql 可以通過標準的jdbc連接數據庫,獲得數據源

public class SparkSql {public static SimpleDateFormat sdf = new SimpleDateFormat("_yyyyMMdd_HH_mm_ss");    private static final String appName = "spark sql test";    private static final String master = "spark://192.168.1.21:7077";    private static final String JDBCURL = "jdbc:mysql://192.168.1.18:3306/lng?user=root&password=123456";    public static void main(String[] avgs){

        SparkContext context = new SparkContext(master, appName);        SQLContext sqlContext = new SQLContext(context);        // Creates a DataFrame based on a table named "people"        // stored in a MySQL database.        DataFrame df = sqlContext
                .read()
                .format("jdbc")
                .option("url", JDBCURL)
                .option("dbtable", "tsys_user")
                .load();        // Looks the schema of this DataFrame.        df.printSchema();        // Counts people by age        DataFrame countsByAge = df.groupBy("customStyle").count();        countsByAge.show();        // Saves countsByAge to S3 in the JSON format.        countsByAge.write().format("json").save("hdfs://192.168.1.17:9000/administrator/sql-result" + sdf.format(new Date()));    }

}

如果沒有包含mysql的驅動程序,需要參考http://stackoverflow.com/questions/34764505/no-suitable-driver-found-for-jdbc-in-spark

  1. You might want to assembly you application with your build manager (Maven,SBT) thus you'll not need to add the dependecies in your spark-submit cli. (意思就是把mysql的驅動程序打包到提交到spark的jar包里)

  2. You can use the following option in your spark-submit cli :(改成下面,經測試,可行,或者加入export SPARK_CLASSPATH=$SPARK_CLASSPATH:/usr/local/spark-1.6.1-bin-hadoop2.6/conf/driverLib/mysql-connector-java-5.1.36.jar 到conf/spark-env.sh)

    spark-submit --driver-class-path /usr/local/spark-1.6.1-bin-hadoop2.6/conf/driverLib/mysql-connector-java-5.1.36.jar --class com.xxx.SparkSql  /usr/local/spark.jar


    Explanation : Supposing that you have all your jars in a lib directory in your project root, this will read all the libraries and add them to the application submit.

  3. You can also try to configure these 2 variables : spark.driver.extraClassPath and spark.executor.extraClassPath in SPARK_HOME/conf/spark-default.conf file and specify the value of these variables as the path of the jar file. Ensure that the same path exists on workernodes.(經測,不行)

到此,關于“spark sql怎么連接和使用mysql數據源”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

崇信县| 马公市| 河源市| 枣强县| 兴和县| 郁南县| 神木县| 名山县| 泗洪县| 兴化市| 阆中市| 福鼎市| 荥阳市| 南木林县| 白沙| 奇台县| 泊头市| 股票| 宁波市| 昭苏县| 昭觉县| 元江| 原阳县| 平远县| 湖北省| 疏附县| 临泉县| 焦作市| 荆门市| 嘉禾县| 双城市| 宜昌市| 肃宁县| 类乌齐县| 柳江县| 瑞昌市| 洛浦县| 江永县| 大洼县| 昂仁县| 富裕县|