You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Sean Owen (JIRA)" <ji...@apache.org> on 2016/07/19 10:48:20 UTC

[jira] [Updated] (SPARK-16613) RDD.pipe returns values for empty partitions

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

Sean Owen updated SPARK-16613:
------------------------------
    Summary: RDD.pipe returns values for empty partitions  (was: A bug in RDD pipe operation)

> RDD.pipe returns values for empty partitions
> --------------------------------------------
>
>                 Key: SPARK-16613
>                 URL: https://issues.apache.org/jira/browse/SPARK-16613
>             Project: Spark
>          Issue Type: Bug
>            Reporter: Alex Krasnyansky
>
> Suppose we have such Spark code
> {code}
> object PipeExample {
>   def main(args: Array[String]) {
>     val fstRdd = sc.parallelize(List("hi", "hello", "how", "are", "you"))
>     val pipeRdd = fstRdd.pipe("/Users/finkel/spark-pipe-example/src/main/resources/len.sh")
>     pipeRdd.collect.foreach(println)
>   }
> }
> {code}
> It uses a bash script to convert a string to its length.
> {code}
> #!/bin/sh
> read input
> len=${#input}
> echo $len
> {code}
> So far so good, but when I run the code, it prints incorrect output. For example:
> {code}
> 0
> 2
> 0
> 5
> 3
> 0
> 3
> 3
> {code}
> I expect to see
> {code}
> 2
> 5
> 3
> 3
> 3
> {code}
> which is correct output for the app. I think it's a bug. It's expected to see only positive integers and avoid zeros.
> Environment:
> 1. Spark version is 1.6.2
> 2. Scala version is 2.11.6



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

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