I have a DataFrame with a column of string type, this string is a JSON format, I wanted to convert this column to multiple columns based on this JSON format. I can do it if I have the JSON schema, but I don't have it.
Example:
Original Dataframe:
---------------------
| json_string|
---------------------
|{"a":2,"b":"hello"}|
| {"a":1,"b":"hi"}|
---------------------
After Conversion/Parse
--------------
| a | b |
--------------
| 2 | hello|
| 1 | hi|
--------------
I using Apache Spark 2.1.1.