我是Spark和Scala的新手我遇到了这个异常,我正在尝试添加一些额外的字段,即StructField到使用Spark SQL从数据框检索到的现有StructType,以及gettting以下异常。
代码段:
val dfStruct:StructType=parquetDf.select("columnname").schema
dfStruct.add("newField","IntegerType",true)
线程“main”中的异常
org.apache.spark.sql.types.DataTypeException: Unsupported dataType: IntegerType. If you have a struct and a field name of it has any special characters, please use backticks (`) to quote that field name, e.g. `x+y`. Please note that backtick itself is not supported in a field name.
at org.apache.spark.sql.types.DataTypeParser$class.toDataType(DataTypeParser.scala:95)
at org.apache.spark.sql.types.DataTypeParser$$anon$1.toDataType(DataTypeParser.scala:107)
at org.apache.spark.sql.types.DataTypeParser$.parse(DataTypeParser.scala:111)
我可以看到jira上有一些与此异常相关的未解决的问题,但无法理解。我使用Spark 1.5.1版本
答案 0 :(得分:1)
当您使用StructType.add
以下签名时:
add(name: String, dataType: String, nullable: Boolean)
dataType
字符串应与.simpleString
或.typeName
对应。对于IntegerType
,它是int
:
import org.apache.spark.sql.types._
IntegerType.simpleString
// String = int
或integer
:
IntegerType.typeName
// String = integer
所以你需要的是这样的:
val schema = StructType(Nil)
schema.add("foo", "int", true)
// org.apache.spark.sql.types.StructType =
// StructType(StructField(foo,IntegerType,true))
或
schema.add("foo", "integer", true)
// org.apache.spark.sql.types.StructType =
// StructType(StructField(foo,IntegerType,true))
如果您想传递IntegerType
,则必须DataType
而不是String
:
schema.add("foo", IntegerType, true)