2017-10-04 151 views

回答

2

有星火SQL的這個隱藏的功能來定義使用所謂架構DSL的模式(即沒有很多圓括號等)。

scala> spark.version 
res0: String = 2.2.0 

import org.apache.spark.sql.types._ 
val name = new StructType().add($"name".string) 
scala> println(name.simpleString) 
struct<name:string> 

val address = new StructType().add($"address".string) 
scala> println(address.simpleString) 
struct<address:string> 

val schema = new StructType().add("abc", name).add("pqr", address) 
scala> println(schema.simpleString) 
struct<abc:struct<name:string>,pqr:struct<address:string>> 

scala> schema.simpleString == "struct<abc:struct<name:string>,pqr:struct<address:string>>" 
res4: Boolean = true 

scala> schema.printTreeString 
root 
|-- abc: struct (nullable = true) 
| |-- name: string (nullable = true) 
|-- pqr: struct (nullable = true) 
| |-- address: string (nullable = true) 
+0

喜歡它:)謝謝 –

2

structField是類型和名稱的組合,所以你會怎麼做:

StructType(Seq(StructField("structName", StructType(Seq(StructField("name", StringType), StructField("address", StringType)))) 
相關問題