SchemaRDD的架构?

时间:2015-01-08 22:49:44

标签: scala apache-spark rdd apache-spark-sql

给定SchemaRDD(使用SQLContext.parquetFile加载),如何提取其元数据/架构/列列表?

2 个答案:

答案 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