[jira] [Updated] (SPARK-12164) [SQL] Display the binary/encoded values

2015-12-16 Thread Michael Armbrust (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-12164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Armbrust updated SPARK-12164:
-
Assignee: Xiao Li

> [SQL] Display the binary/encoded values
> ---
>
> Key: SPARK-12164
> URL: https://issues.apache.org/jira/browse/SPARK-12164
> Project: Spark
>  Issue Type: Improvement
>  Components: SQL
>Affects Versions: 1.6.0
>Reporter: Xiao Li
>Assignee: Xiao Li
> Fix For: 2.0.0
>
>
> So far, we are using comma-separated decimal format to output the encoded 
> contents. This way is rare when the data is in binary. This could be a common 
> issue when we use Dataset API. 
> For example, 
> {code}
> implicit val kryoEncoder = Encoders.kryo[KryoClassData]
> val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
> KryoClassData("c", 3)).toDS()
> ds.show(20, false);
> {code}



--
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



[jira] [Updated] (SPARK-12164) [SQL] Display the binary/encoded values

2015-12-06 Thread Xiao Li (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-12164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Li updated SPARK-12164:

Description: 
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
[
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
]

  was:
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);


> [SQL] Display the binary/encoded values
> ---
>
> Key: SPARK-12164
> URL: https://issues.apache.org/jira/browse/SPARK-12164
> Project: Spark
>  Issue Type: Improvement
>  Components: SQL
>Affects Versions: 1.6.0
>Reporter: Xiao Li
>
> So far, we are using comma-separated decimal format to output the encoded 
> contents. This way is rare when the data is in binary. This could be a common 
> issue when we use Dataset API. For example, 
> For example, 
> [
> implicit val kryoEncoder = Encoders.kryo[KryoClassData]
> val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
> KryoClassData("c", 3)).toDS()
> ds.show(20, false);
> ]



--
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



[jira] [Updated] (SPARK-12164) [SQL] Display the binary/encoded values

2015-12-06 Thread Xiao Li (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-12164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Li updated SPARK-12164:

Description: 
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);

  was:
So far, we are using decimal format to output the encoded contents. This way is 
rare when the data is in binary. 

For example, 
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);


> [SQL] Display the binary/encoded values
> ---
>
> Key: SPARK-12164
> URL: https://issues.apache.org/jira/browse/SPARK-12164
> Project: Spark
>  Issue Type: Improvement
>  Components: SQL
>Affects Versions: 1.6.0
>Reporter: Xiao Li
>
> So far, we are using comma-separated decimal format to output the encoded 
> contents. This way is rare when the data is in binary. This could be a common 
> issue when we use Dataset API. For example, 
> For example, 
> implicit val kryoEncoder = Encoders.kryo[KryoClassData]
> val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
> KryoClassData("c", 3)).toDS()
> ds.show(20, false);



--
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



[jira] [Updated] (SPARK-12164) [SQL] Display the binary/encoded values

2015-12-06 Thread Xiao Li (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-12164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Li updated SPARK-12164:

Description: 
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
{
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
}

  was:
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
[
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
]


> [SQL] Display the binary/encoded values
> ---
>
> Key: SPARK-12164
> URL: https://issues.apache.org/jira/browse/SPARK-12164
> Project: Spark
>  Issue Type: Improvement
>  Components: SQL
>Affects Versions: 1.6.0
>Reporter: Xiao Li
>
> So far, we are using comma-separated decimal format to output the encoded 
> contents. This way is rare when the data is in binary. This could be a common 
> issue when we use Dataset API. For example, 
> For example, 
> {
> implicit val kryoEncoder = Encoders.kryo[KryoClassData]
> val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
> KryoClassData("c", 3)).toDS()
> ds.show(20, false);
> }



--
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



[jira] [Updated] (SPARK-12164) [SQL] Display the binary/encoded values

2015-12-06 Thread Xiao Li (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-12164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Li updated SPARK-12164:

Description: 
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. 

For example, 
{code}
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
{code}

  was:
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
{code}
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
{code}


> [SQL] Display the binary/encoded values
> ---
>
> Key: SPARK-12164
> URL: https://issues.apache.org/jira/browse/SPARK-12164
> Project: Spark
>  Issue Type: Improvement
>  Components: SQL
>Affects Versions: 1.6.0
>Reporter: Xiao Li
>
> So far, we are using comma-separated decimal format to output the encoded 
> contents. This way is rare when the data is in binary. This could be a common 
> issue when we use Dataset API. 
> For example, 
> {code}
> implicit val kryoEncoder = Encoders.kryo[KryoClassData]
> val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
> KryoClassData("c", 3)).toDS()
> ds.show(20, false);
> {code}



--
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



[jira] [Updated] (SPARK-12164) [SQL] Display the binary/encoded values

2015-12-06 Thread Xiao Li (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-12164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Li updated SPARK-12164:

Description: 
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
{code}
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
{code}

  was:
So far, we are using comma-separated decimal format to output the encoded 
contents. This way is rare when the data is in binary. This could be a common 
issue when we use Dataset API. For example, 

For example, 
{
implicit val kryoEncoder = Encoders.kryo[KryoClassData]
val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
KryoClassData("c", 3)).toDS()
ds.show(20, false);
}


> [SQL] Display the binary/encoded values
> ---
>
> Key: SPARK-12164
> URL: https://issues.apache.org/jira/browse/SPARK-12164
> Project: Spark
>  Issue Type: Improvement
>  Components: SQL
>Affects Versions: 1.6.0
>Reporter: Xiao Li
>
> So far, we are using comma-separated decimal format to output the encoded 
> contents. This way is rare when the data is in binary. This could be a common 
> issue when we use Dataset API. For example, 
> For example, 
> {code}
> implicit val kryoEncoder = Encoders.kryo[KryoClassData]
> val ds = Seq(KryoClassData("a", 1), KryoClassData("b", 2), 
> KryoClassData("c", 3)).toDS()
> ds.show(20, false);
> {code}



--
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