Spark MapReduce中出现意外结果

时间:2016-02-03 23:52:22

标签: scala apache-spark mapreduce

我是Spark的新手,想要了解MapReduce是如何在幕后完成的,以确保我正确使用它。 This post提供了一个很好的答案,但我的结果似乎并没有遵循所描述的逻辑。我在命令行上运行Scala中的Spark Quick Start指南。当我正确地添加线长时,事情就好了。总行长度为1213:

scala> val textFile = sc.textFile("README.md")

scala> val linesWithSpark = textFile.filter(line => line.contains("Spark"))

scala> val linesWithSparkLengths = linesWithSpark.map(s => s.length)

scala> linesWithSparkLengths.foreach(println)

Result:
14
78
73
42
68
17
62
45
76
64
54
74
84
29
136
77
77
73
70

scala> val totalLWSparkLength = linesWithSparkLengths.reduce((a,b) => a+b)
    totalLWSparkLength: Int = 1213

当我略微调整它以使用(a-b)而不是(a + b)时,

scala> val totalLWSparkTest = linesWithSparkLengths.reduce((a,b) => a-b)

我期望-1185,根据this post中的逻辑:

List(14,78,73,42,68,17,62,45,76,64,54,74,84,29,136,77,77,73,70).reduce( (x,y) => x - y )
  Step 1 : op( 14, 78 ) will be the first evaluation. 
     x is 14 and y is 78. Result of x - y = -64.
  Step 2:  op( op( 14, 78 ), 73 )
     x is op(14,78) = -64 and y = 73. Result of x - y = -137
  Step 3:  op( op( op( 14, 78 ), 73 ), 42) 
     x is op( op( 14, 78 ), 73 ) = -137 and y is 42. Result is -179.
  ...
  Step 18:  op( (... ), 73), 70) will be the final evaluation.
     x is -1115 and y is 70. Result of x - y is -1185.

然而,发生了一些奇怪的事情:

scala> val totalLWSparkTest = linesWithSparkLengths.reduce((a,b) => a-b)
totalLWSparkTest: Int = 151

当我再次运行时......

scala> val totalLWSparkTest = linesWithSparkLengths.reduce((a,b) => a-b)
totalLWSparkTest: Int = -151

有谁能告诉我为什么结果是151(或-151)而不是-1185?

1 个答案:

答案 0 :(得分:6)

这是因为减法既不是关联的也不是可交换的。让我们从关联性开始:

(- (- (- 14 78) 73) 42) 
(- (- -64 73) 42)
(- -137 42) 
-179

不同
(- (- 14 78) (- 73 42))
(- -64 (- 73 42))
(- -64 31)
-95

现在是交换的时候了:

(- (- (- 14 78) 73) 42) ;; From the previous example

不同
(- (- (- 42 73) 78) 14)
(- (- -31 78) 14)
(- -109 14)
-123

Spark首先在各个分区上应用reduce,然后以任意顺序合并部分结果。如果您使用的功能不符合一个或两个标准,则最终结果可能是非确定性的。