Skip to content

Commit

Permalink
broke something
Browse files Browse the repository at this point in the history
  • Loading branch information
giwa committed Aug 14, 2014
1 parent 0704b86 commit 080541a
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 6 deletions.
3 changes: 2 additions & 1 deletion python/pyspark/rdd.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ def mapPartitions(self, f, preservesPartitioning=False):
>>> rdd.mapPartitions(f).collect()
[3, 7]
"""
def func(s, iterator): return f(iterator)
def func(s, iterator):
return f(iterator)
return self.mapPartitionsWithIndex(func)

def mapPartitionsWithIndex(self, f, preservesPartitioning=False):
Expand Down
10 changes: 6 additions & 4 deletions python/pyspark/streaming/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,21 +169,23 @@ def _testInputStream(self, test_inputs, numSlices=None):
jinput_stream = self._jvm.PythonTestInputStream(self._jssc,
jtempFiles,
numSlices).asJavaDStream()
return DStream(jinput_stream, self, PickleSerializer())

return DStream(jinput_stream, self, BatchedSerializer(PickleSerializer()))

def _testInputStream2(self, test_inputs, numSlices=None):
"""
This is inpired by QueStream implementation. Give list of RDD and generate DStream
which contain the RDD.
"""
test_rdds = list()
test_rdd_deserializers = list()
for test_input in test_inputs:
test_rdd = self._sc.parallelize(test_input, numSlices)
print test_rdd.glom().collect()
test_rdds.append(test_rdd._jrdd)
test_rdd_deserializers.append(test_rdd._jrdd_deserializer)

jtest_rdds = ListConverter().convert(test_rdds, SparkContext._gateway._gateway_client)
jinput_stream = self._jvm.PythonTestInputStream2(self._jssc, jtest_rdds).asJavaDStream()

return DStream(jinput_stream, self, BatchedSerializer(PickleSerializer()))
dstream = DStream(jinput_stream, self, test_rdd_deserializers[0])
dstream._test_switch_dserializer(test_rdd_deserializers)
return dstream
20 changes: 20 additions & 0 deletions python/pyspark/streaming/dstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

from collections import defaultdict
from itertools import chain, ifilter, imap
import time
import operator

from pyspark.serializers import NoOpSerializer,\
Expand Down Expand Up @@ -289,6 +290,25 @@ def get_output(rdd, time):

self.foreachRDD(get_output)

def _test_switch_dserializer(self, serializer_que):
"""
Deserializer is dynamically changed based on numSlice and the number of
input. This function choose deserializer. Currently this is just FIFO.
"""

jrdd_deserializer = self._jrdd_deserializer

def switch(rdd, jtime):
try:
print serializer_que
jrdd_deserializer = serializer_que.pop(0)
print jrdd_deserializer
except Exception as e:
print e

self.foreachRDD(switch)



# TODO: implement groupByKey
# TODO: impelment union
Expand Down
2 changes: 2 additions & 0 deletions python/pyspark/streaming_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ def test_count(self):
test_input = [[], [1], range(1, 3), range(1, 4), range(1, 5)]

def test_func(dstream):
print "count"
dstream.count().pyprint()
return dstream.count()
expected_output = map(lambda x: [len(x)], test_input)
output = self._run_stream(test_input, test_func, expected_output)
Expand Down
11 changes: 11 additions & 0 deletions python/pyspark/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import time
import socket
import traceback
import itertools
# CloudPickler needs to be imported so that depicklers are registered using the
# copy_reg module.
from pyspark.accumulators import _accumulatorRegistry
Expand Down Expand Up @@ -74,6 +75,16 @@ def main(infile, outfile):
(func, deserializer, serializer) = command
init_time = time.time()
iterator = deserializer.load_stream(infile)
print "deserializer in worker: %s" % str(deserializer)
iterator, walk = itertools.tee(iterator)
if isinstance(walk, int):
print "this is int"
print walk
else:
try:
print list(walk)
except:
print list(walk)
serializer.dump_stream(func(split_index, iterator), outfile)
except Exception as e:
# Write the error to stderr in addition to trying to pass it back to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ class PythonTestInputStream(ssc_ : JavaStreamingContext, inputFiles: JArrayList[
tempFile.getAbsolutePath
}
}
println("PythonTestInputStreaming numPartitons" + numPartitions )
val rdd = PythonRDD.readRDDFromFile(JavaSparkContext.fromSparkContext(ssc_.sparkContext), selectedInputFile, numPartitions).rdd
logInfo("Created RDD " + rdd.id + " with " + selectedInputFile)
Some(rdd)
Expand Down

0 comments on commit 080541a

Please sign in to comment.