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": "miaradi...@sparky.com"
      },
      {
        "name": "Thor",
        "surname": "Kovaskz",
        "mobile": "8829177193",
        "email": "tkova...@sparky.com"
      },
      {
        "name": "Bindy",
        "surname": "Kvuls",
        "mobile": "5033828845",
        "email": "bind...@sparky.com"
      }
    ]
  }
}

Where as, this works because all are in the same line:

    [
      {"name": "Mia","surname": "Radison","mobile": "7295913821","email": 
"miaradi...@sparky.com"},
      {"name": "Thor","surname": "Kovaskz","mobile": "8829177193","email": 
"tkova...@sparky.com"},
      {"name": "Bindy","surname": "Kvuls","mobile": "5033828845","email": 
"bind...@sparky.com"}
    ]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to