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.SparkContext.{log => sparkLog, _}
but wouldn't it be easier just to avoid so expected clash in the first
place?
thank you.
-d
