You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Hyukjin Kwon (JIRA)" <ji...@apache.org> on 2017/06/27 07:59:00 UTC

[jira] [Created] (SPARK-21224) Support a DDL-formatted string in DataFrameReader.schema in R

Hyukjin Kwon created SPARK-21224:
------------------------------------

             Summary: Support a DDL-formatted string in DataFrameReader.schema in R
                 Key: SPARK-21224
                 URL: https://issues.apache.org/jira/browse/SPARK-21224
             Project: Spark
          Issue Type: Improvement
          Components: SparkR
    Affects Versions: 2.2.0
            Reporter: Hyukjin Kwon
            Priority: Minor


This might have to be a followup for SPARK-20431 but I just decided to make this separate for R specifically as it might be confused.

Please refer the discussion in the PR and SPARK-20431.

In a simple view, this JIRA describes the support for a DDL-formetted string as schema as below:

{code}
mockLines <- c("{\"name\":\"Michael\"}",
               "{\"name\":\"Andy\", \"age\":30}",
               "{\"name\":\"Justin\", \"age\":19}")
jsonPath <- tempfile(pattern = "sparkr-test", fileext = ".tmp")
writeLines(mockLines, jsonPath)

df <- read.df(jsonPath, "json", "name STRING, age DOUBLE")
collect(df)
{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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