From 5f83c6991c95616ecbc2878f8860c69b2826f56c Mon Sep 17 00:00:00 2001 From: Hossein Date: Fri, 15 Jan 2016 11:46:46 -0800 Subject: [SPARK-12833][SQL] Initial import of spark-csv CSV is the most common data format in the "small data" world. It is often the first format people want to try when they see Spark on a single node. Having to rely on a 3rd party component for this leads to poor user experience for new users. This PR merges the popular spark-csv data source package (https://github.com/databricks/spark-csv) with SparkSQL. This is a first PR to bring the functionality to spark 2.0 master. We will complete items outlines in the design document (see JIRA attachment) in follow up pull requests. Author: Hossein Author: Reynold Xin Closes #10766 from rxin/csv. --- .../META-INF/services/org.apache.spark.sql.sources.DataSourceRegister | 1 + 1 file changed, 1 insertion(+) (limited to 'sql/core/src/main/resources') diff --git a/sql/core/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister b/sql/core/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister index 1ca2044057..226d59d0ea 100644 --- a/sql/core/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister +++ b/sql/core/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister @@ -1,3 +1,4 @@ +org.apache.spark.sql.execution.datasources.csv.DefaultSource org.apache.spark.sql.execution.datasources.jdbc.DefaultSource org.apache.spark.sql.execution.datasources.json.DefaultSource org.apache.spark.sql.execution.datasources.parquet.DefaultSource -- cgit v1.2.3