We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RDD.mapPartitions
iteratro
list
RDD.mapPartitions in the mock works like RDD.map but shouldn't.
RDD.map
import dummy_spark rdd = dummy_spark.RDD([1, 2, 3], None) _ = rdd.map(print) # should print 1\n2\n3\n 1 2 3 # OK! _ = rdd.mapPartitions(print) # should print [1, 2, 3] or <iterator object> 1 2 3 # FAIL!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
RDD.mapPartitions
in the mock works likeRDD.map
but shouldn't.The text was updated successfully, but these errors were encountered: