Hah, weird. "log" should be protected actually (look at trait Logging). Is your
class extending SparkContext or somehow being placed in the org.apache.spark
package? Or maybe the Scala compiler looks at it anyway.. in that case we can
rename it. Please open a JIRA for it if that's the case.
On
it would seem the code like
import o.a.spark.SparkContext._
import math._
a = log(b)
does not seem to compile anymore with Spark 1.0.x since SparkContext._ also
exposes a `log` function. Which happens a lot to a guy like me.
obvious workaround is to use something like
import o.a.spark.Sp