Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upExtract common classes from src/scala/microsoft-spark-<version>. #15
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


We create multiple jars during our builds to accommodate multiple versions of Apache Spark. In the current approach, the implementation is copied from one version to another and then necessary changes are made.
An ideal approach could create a
commondirectory and extract common classes from duplicate code. Note that even if class/code is exactly the same, you cannot pull out to a common class if it depends on Apache Spark.Success Criteria: