Skip to content

Instantly share code, notes, and snippets.

@fahadsiddiqui
Last active May 22, 2023 19:42
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fahadsiddiqui/d5cff15698f9dc57e2dd7d7052c6cc43 to your computer and use it in GitHub Desktop.
Save fahadsiddiqui/d5cff15698f9dc57e2dd7d7052c6cc43 to your computer and use it in GitHub Desktop.
Flatten a nested JSON Spark DataFrame using Scala, Spark 2.2.+ — a custom solution.
def flattenDataFrame(df: DataFrame): DataFrame = {
val fields = df.schema.fields
val fieldNames = fields.map(x => x.name)
for (i <- fields.indices) {
val field = fields(i)
val fieldType = field.dataType
val fieldName = field.name
fieldType match {
case _: ArrayType =>
val fieldNamesExcludingArray = fieldNames.filter(_ != fieldName)
val fieldNamesAndExplode = fieldNamesExcludingArray ++ Array(
s"explode_outer($fieldName) as $fieldName"
)
val explodedDf = df.selectExpr(fieldNamesAndExplode: _*)
return flattenDataFrame(explodedDf)
case structType: StructType =>
val childFieldNames =
structType.fieldNames.map(childname => fieldName + "." + childname)
val newFieldNames = fieldNames.filter(_ != fieldName) ++ childFieldNames
import org.apache.spark.sql.functions.col
val renamedCols =
newFieldNames.map { x =>
col(x.toString).as(x.toString.replace(".", "_"))
}
val explodedDf = df.select(renamedCols: _*)
return flattenDataFrame(explodedDf)
case _ =>
}
}
df
}
@thomasheslinatmatches
Copy link

Perfect! Exactly what I needed! Thank you

@rohan9872
Copy link

Do you write reverse logic of same. how to convert flatten dataframe to nested dataframe. If you help me with code it will life saver for me

@Tanmaynihore
Copy link

@fahadsiddiqui How to deflatern this df into nested json ..?

@eliasboughosn
Copy link

is there a way we can modify this code to get the parents as well and not just the final nodes? ex: get columns a, b, a.child, b.child

@Sanjanagowd
Copy link

Hello Fahad, this is interesting
we do have similar one in our website:

https://www.24tutorials.com/spark/flatten-json-spark-dataframe/
Hope this will be helpful.
Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment