给定SchemaRDD
(使用SQLContext.parquetFile
加载),如何提取其元数据/架构/列列表?
答案 0 :(得分:3)
可以通过SchemaRDD
[rdd].schema.fields
访问字段列表。
lazy val schema: StructType Returns the schema of this SchemaRDD (represented by a StructType).
答案 1 :(得分:0)
printSchema()
下还有一个SchemaRDD
方法,请参阅SchemaRDD。