SparkSql读取csv实现统计功能

前面已经介绍过有关sparksql读取json文件取得DataSet的功能,但实际开发中除了json外还可以使用csv、数据库等作为sparksql的数据源,因为csv日常开发也用的很多所以借此机会把我的学习代码分享给大家

一 关于csv的schema

sparksql读取csv可以根据csv文件的第一行作为header自动推导出列名或schema,也可以通过手动的方式指定schema,自动推导读取csv时需要指定option参数,看下官方的文档

You can set the following CSV-specific options to deal with CSV files:

  • sep (default ,): sets a single character as a separator for each field and value.
  • encoding (default UTF-8): decodes the CSV files by the given encoding type.
  • quote (default "): sets a single character used for escaping quoted values where the separator can be part of the value. If you would like to turn off quotations, you need to set not null but an empty string. This behaviour is different from com.databricks.spark.csv.
  • escape (default \): sets a single character used for escaping quotes inside an already quoted value.
  • charToEscapeQuoteEscaping (default escape or \0): sets a single character used for escaping the escape for the quote character. The default value is escape character when escape and quote characters are different, \0 otherwise.
  • comment (default empty string): sets a single character used for skipping lines beginning with this character. By default, it is disabled.
  • header (default false): uses the first line as names of columns.
  • enforceSchema (default true): If it is set to true, the specified or inferred schema will be forcibly applied to datasource files, and headers in CSV files will be ignored. If the option is set to false, the schema will be validated against all headers in CSV files in the case when the header option is set to true. Field names in the schema and column names in CSV headers are checked by their positions taking into account spark.sql.caseSensitive. Though the default value is true, it is recommended to disable the enforceSchema option to avoid incorrect results.
  • inferSchema (default false): infers the input schema automatically from data. It requires one extra pass over the data.
  • samplingRatio (default is 1.0): defines fraction of rows used for schema inferring.
  • ignoreLeadingWhiteSpace (default false): a flag indicating whether or not leading whitespaces from values being read should be skipped.
  • ignoreTrailingWhiteSpace (default false): a flag indicating whether or not trailing whitespaces from values being read should be skipped.
  • nullValue (default empty string): sets the string representation of a null value. Since 2.0.1, this applies to all supported types including the string type.
  • emptyValue (default empty string): sets the string representation of an empty value.
  • nanValue (default NaN): sets the string representation of a non-number" value.
  • positiveInf (default Inf): sets the string representation of a positive infinity value.
  • negativeInf (default -Inf): sets the string representation of a negative infinity value.
  • dateFormat (default yyyy-MM-dd): sets the string that indicates a date format. Custom date formats follow the formats at java.text.SimpleDateFormat. This applies to date type.
  • timestampFormat (default yyyy-MM-dd'T'HH:mm:ss.SSSXXX): sets the string that indicates a timestamp format. Custom date formats follow the formats at java.text.SimpleDateFormat. This applies to timestamp type.
  • maxColumns (default 20480): defines a hard limit of how many columns a record can have.
  • maxCharsPerColumn (default -1): defines the maximum number of characters allowed for any given value being read. By default, it is -1 meaning unlimited length
  • mode (default PERMISSIVE): allows a mode for dealing with corrupt records during parsing. It supports the following case-insensitive modes.
    • PERMISSIVE : when it meets a corrupted record, puts the malformed string into a field configured by columnNameOfCorruptRecord, and sets other fields to null. To keep corrupt records, an user can set a string type field named columnNameOfCorruptRecord in an user-defined schema. If a schema does not have the field, it drops corrupt records during parsing. A record with less/more tokens than schema is not a corrupted record to CSV. When it meets a record having fewer tokens than the length of the schema, sets null to extra fields. When the record has more tokens than the length of the schema, it drops extra tokens.
    • DROPMALFORMED : ignores the whole corrupted records.
    • FAILFAST : throws an exception when it meets corrupted records.
  • columnNameOfCorruptRecord (default is the value specified in spark.sql.columnNameOfCorruptRecord): allows renaming the new field having malformed string created by PERMISSIVE mode. This overrides spark.sql.columnNameOfCorruptRecord.
  • multiLine (default false): parse one record, which may span multiple lines.

参数看起来特别多,但是大多都有默认值,实际读取的时候只需指定很少的就行了,如下所示

Dataset<Row> ds=spark.read()
	  //自动推断列类型
	   .option("inferSchema", "true")
	   //指定一个指示空值的字符串
	   .option("nullvalue", "?")
	   //当设置为 true 时,第一行文件将被用来命名列,而不包含在数据中
	   .option("header", "true")
	   .csv("/home/cry/myStudyData/userList.csv");

如果不喜欢这种方式也可以选择手动方式指定schema

List<StructField> fs=new ArrayList<StructField>();
StructField f1=DataTypes.createStructField("id", DataTypes.IntegerType, true);
StructField f2=DataTypes.createStructField("name", DataTypes.StringType, true);
StructField f3=DataTypes.createStructField("age", DataTypes.IntegerType, true);
        
fs.add(f1);
fs.add(f2);
fs.add(f3);
		
StructType schema=DataTypes.createStructType(fs);
		
     
Dataset<Row> ds=spark.read().schema(schema).csv("/home/cry/myStudyData");

二  完整的代码

package com.debug;

import java.util.ArrayList;
import java.util.List;

import org.apache.spark.sql.Dataset;
import org.apache.spark.sql.Row;
import org.apache.spark.sql.SparkSession;
import org.apache.spark.sql.types.DataTypes;
import org.apache.spark.sql.types.StructField;
import org.apache.spark.sql.types.StructType;

public class ReadCsv {

	public static void main(String[] args) {
		SparkSession spark = SparkSession.builder().appName("读取csv做统计").master("local[*]").getOrCreate();
	    List<StructField> fs=new ArrayList<StructField>();
        StructField f1=DataTypes.createStructField("id", DataTypes.IntegerType, true);
        StructField f2=DataTypes.createStructField("name", DataTypes.StringType, true);
        StructField f3=DataTypes.createStructField("age", DataTypes.IntegerType, true);
        
        fs.add(f1);
        fs.add(f2);
        fs.add(f3);
		
        StructType schema=DataTypes.createStructType(fs);
		
		/*Dataset<Row> ds=spark.read()
		  //自动推断列类型
		  .option("inferSchema", "true")
		  //指定一个指示空值的字符串
		  .option("nullvalue", "?")
		  //当设置为 true 时,第一行文件将被用来命名列,而不包含在数据中
		  .option("header", "true")
		  .csv("/home/cry/myStudyData/userList.csv");*/
     
        Dataset<Row> ds=spark.read().schema(schema).csv("/home/cry/myStudyData");
		ds.createOrReplaceTempView("user");
		Dataset<Row> res=spark.sql("select * from user where age>25");
		res.show();
		
		spark.stop();
	}

}

其中的一个csv内容如下

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值