-
- Downloads
[SPARK-5472][SQL] A JDBC data source for Spark SQL.
This pull request contains a Spark SQL data source that can pull data from, and can put data into, a JDBC database. I have tested both read and write support with H2, MySQL, and Postgres. It would surprise me if both read and write support worked flawlessly out-of-the-box for any other database; different databases have different names for different JDBC data types and different meanings for SQL types with the same name. However, this code is designed (see `DriverQuirks.scala`) to make it *relatively* painless to add support for another database by augmenting the type mapping contained in this PR. Author: Tor Myklebust <tmyklebu@gmail.com> Closes #4261 from tmyklebu/master and squashes the following commits: cf167ce [Tor Myklebust] Work around other Java tests ruining TestSQLContext. 67893bf [Tor Myklebust] Move the jdbcRDD methods into SQLContext itself. 585f95b [Tor Myklebust] Dependencies go into the project's pom.xml. 829d5ba [Tor Myklebust] Merge branch 'master' of https://github.com/apache/spark 41647ef [Tor Myklebust] Hide a couple things that don't need to be public. 7318aea [Tor Myklebust] Fix scalastyle warnings. a09eeac [Tor Myklebust] JDBC data source for Spark SQL. 176bb98 [Tor Myklebust] Add test deps for JDBC support.
Showing
- sql/core/pom.xml 24 additions, 0 deletionssql/core/pom.xml
- sql/core/src/main/java/org/apache/spark/sql/jdbc/JDBCUtils.java 59 additions, 0 deletions...re/src/main/java/org/apache/spark/sql/jdbc/JDBCUtils.java
- sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala 48 additions, 1 deletion...core/src/main/scala/org/apache/spark/sql/SQLContext.scala
- sql/core/src/main/scala/org/apache/spark/sql/jdbc/DriverQuirks.scala 99 additions, 0 deletions...c/main/scala/org/apache/spark/sql/jdbc/DriverQuirks.scala
- sql/core/src/main/scala/org/apache/spark/sql/jdbc/JDBCRDD.scala 417 additions, 0 deletions...re/src/main/scala/org/apache/spark/sql/jdbc/JDBCRDD.scala
- sql/core/src/main/scala/org/apache/spark/sql/jdbc/JDBCRelation.scala 133 additions, 0 deletions...c/main/scala/org/apache/spark/sql/jdbc/JDBCRelation.scala
- sql/core/src/main/scala/org/apache/spark/sql/jdbc/JavaJDBCTrampoline.scala 30 additions, 0 deletions.../scala/org/apache/spark/sql/jdbc/JavaJDBCTrampoline.scala
- sql/core/src/main/scala/org/apache/spark/sql/jdbc/jdbc.scala 235 additions, 0 deletionssql/core/src/main/scala/org/apache/spark/sql/jdbc/jdbc.scala
- sql/core/src/test/java/org/apache/spark/sql/jdbc/JavaJDBCTest.java 102 additions, 0 deletions...src/test/java/org/apache/spark/sql/jdbc/JavaJDBCTest.java
- sql/core/src/test/scala/org/apache/spark/sql/jdbc/DockerHacks.scala 51 additions, 0 deletions...rc/test/scala/org/apache/spark/sql/jdbc/DockerHacks.scala
- sql/core/src/test/scala/org/apache/spark/sql/jdbc/JDBCSuite.scala 248 additions, 0 deletions.../src/test/scala/org/apache/spark/sql/jdbc/JDBCSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/jdbc/JDBCWriteSuite.scala 107 additions, 0 deletions...test/scala/org/apache/spark/sql/jdbc/JDBCWriteSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegration.scala 235 additions, 0 deletions...st/scala/org/apache/spark/sql/jdbc/MySQLIntegration.scala
- sql/core/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegration.scala 149 additions, 0 deletions...scala/org/apache/spark/sql/jdbc/PostgresIntegration.scala
Loading
Please register or sign in to comment