Ankit Sarraf created SPARK-10840:
------------------------------------
Summary: SparkSQL doesn't work well with JSON
Key: SPARK-10840
URL: https://issues.apache.org/jira/browse/SPARK-10840
Project: Spark
Issue Type: Bug
Components: SQL
Reporter: Ankit Sarraf
Priority: Trivial
Well formed JSON doesn't work with the 1.5.1 version while using
sqlContext.read.json("<json-file>"):
{
"employees": {
"employee": [
{
"name": "Mia",
"surname": "Radison",
"mobile": "7295913821",
"email": "[email protected]"
},
{
"name": "Thor",
"surname": "Kovaskz",
"mobile": "8829177193",
"email": "[email protected]"
},
{
"name": "Bindy",
"surname": "Kvuls",
"mobile": "5033828845",
"email": "[email protected]"
}
]
}
}
Where as, this works because all are in the same line:
[
{"name": "Mia","surname": "Radison","mobile": "7295913821","email":
"[email protected]"},
{"name": "Thor","surname": "Kovaskz","mobile": "8829177193","email":
"[email protected]"},
{"name": "Bindy","surname": "Kvuls","mobile": "5033828845","email":
"[email protected]"}
]
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]