Hi, I'm noticing a difference between two installations of Spark. I'm pretty sure both are version 0.9.1. One is able to import pyspark.rdd.ResultIterable and the other isn't. Is this an environment problem or do we actually have two different versions of Spark? To be clear, on one box, one can do:
In [1]: import pyspark In [2]: pyspark.rdd.ResultIterable Out[2]: pyspark.resultiterable.ResultIterable while on the other pyspark.rdd.ResultIterable is not found. Any ideas? -T.J.
