cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Reading multi-dimensional json files

AndriusVitkausk
New Contributor III

So I've been having some issues reading a json file that's been provided to the business with another nesting layer, so instead of a json being an:

  • 'array of objects' -> [ {} ,{} ,{} ]
  • It's an 'array of arrays of objects' -> [ [ {}, {} ,{} ], [ {} ,{} ,{} ] ]

While the first is alright to read with the multiline option with spark, the second case simply comes with the correct column schema, thought every columns is just a null value (actual file content looks good)

I've so far tried to create a custom struct schema to deal with the extra layer, but not had any luck to get it to work. Just returns nulls.

Is there something obvious that i'm missing?

1 REPLY 1

ashish1
New Contributor III

You can use the explode function to flatten the array to rows, can you post a simple example of your data?

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group