Github user tdas commented on the pull request:
https://github.com/apache/spark/pull/3237#issuecomment-63169286
Aaah, this is getting into the binary compatibility issue. Adding the
print(num) method to the interface JavaDStreamLike (Scala traits boil down to
Java interfaces) is going to break existing implementations of the abstract
class. But that is probably okay because I doubt any one has subclasses
JavaDStreamLike. You will have to add the mima binary check exception in this
file.
https://github.com/apache/spark/blob/master/project/MimaExcludes.scala
And you have to add exclusions for
`ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.streaming.api.java.JavaDStreamLike.print")`
for Spark 1.2
Let me know if you need more information.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]