Hadoop - Modern Data Architecture with Hadoop
What will be the output of the following code snippet in Lambda architecture?
def speed_process(stream):
return [x*2 for x in stream if x > 5]
result = speed_process([3, 7, 10])
print(result)