Combining "parallel arrays" into Dataframe structure

I have the following data structure in json that I am trying to get into a dataframe using AWS Glue: { "out": [ { "attr": [ "a1", "a2", "a3" ], "val": [ 1, 2, 3 ], "text": "test1" }, { "attr": [ "a4", "a5", "a6" ], "val": [ 4, 5, 6 ], "text": "test2" }… Read More Combining "parallel arrays" into Dataframe structure