PySpark Select Nested struct Columns

Using PySpark select() transformations one can select the nested struct columns from DataFrame. While working with semi-structured files like JSON or structured files like Avro, Parquet, ORC we often have…

0 Comments
Read more about the article Spark Convert case class to Schema
Photo by Shane Rounce on Unsplash

Spark Convert case class to Schema

Spark SQL provides Encoders to convert case class to the spark schema (struct StructType object), If you are using older versions of Spark, you can create spark schema from case…

0 Comments