Hi, I'd like to create a transform function, that convert RDD[String] to RDD[Int]
Occasionally, the input RDD could be an empty RDD. I just want to directly create an empty RDD[Int] if the input RDD is empty. And, I don't want to return None as the result. Is there an easy way to do that?