spark 批量插入數據到數據庫中

使用批量處理的方式提升效率 connection.setAutoCommit(false) //設置手動提交 val sql = "xxxx" pstmt = connection.prepareStatement(sql) for (ele <- list){ ······ pstmt.addBatch() } pstmt.executeBatch() //執行批處理 c
相關文章
相關標籤/搜索