I'm relatively new to Scala/Spark
I'm trying to overload one function depending on the class type into a DStream
def persist(service1DStream: DStream[Service1]): Unit = {...}
def persist(service2DStream: DStream[Service2]): Unit = {...}
I'm getting a compilation error:
persist(_root_.org.apache.spark.streaming.dstream.DStream) is already defined in the scope
Seems that it's due to type erasure.
How to make compiler recognize that DStream[Service1]
is different from DStream[Service2]
Thank you
improved solution re
runtime type erasure
usingshapeless
more info shapeless-guide:}
}
You can also use
import scala.reflect.ClassTag
more info: ClassTag example