报错:Since Spark 2.3,the queries from raw JSON/CSV files are disallowed when thereferenced columns

错误:Exception in thread "main" org.apache.spark.sql.AnalysisException: Since Spark 2.3, the queries from raw JSON/CSV files are disallowed when the referenced columns only include the internal corrupt record column (named _corrupt_record by default). For example: spark.read.schema(schema).json(file).filter($"_corrupt_record".isNotNull).count() and spark.read.schema(schema).json(file).select("_corrupt_record").show(). Instead, you can cache or save the parsed results and then send the same query. For example, val df = spark.read.schema(schema).json(file).cache() and then df.filter($"_corrupt_record".isNotNull).count().;

从 Spark 2.3 开始,当引用的列仅包含内部损坏记录列(默认命名为 _corrupt_record)时,不允许来自原始 JSON/CSV 文件的查询

意思是:spark读取JSON文件时必须是一行一行的格式

 Spark 在处理 json 数据时将每个新行视为一个完整的 json。必须通过删除所有空格和换行符将完整的 json 以紧凑的形式保存在一行中。

也就是:

{
  "a": {
  "b": 1
  }
}

这样是不行的

必须是

{"a":{"b":1}}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值