forked from feathr-ai/feathr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
107 lines (95 loc) · 5.14 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import sbt.Keys.publishLocalConfiguration
ThisBuild / resolvers += Resolver.mavenLocal
ThisBuild / scalaVersion := "2.12.15"
ThisBuild / version := "0.8.0"
ThisBuild / organization := "com.linkedin.feathr"
ThisBuild / organizationName := "linkedin"
val sparkVersion = "3.1.3"
publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true)
val localAndCloudDiffDependencies = Seq(
"org.apache.spark" %% "spark-avro" % sparkVersion,
"org.apache.spark" %% "spark-sql" % sparkVersion,
"org.apache.spark" %% "spark-hive" % sparkVersion,
"org.apache.spark" %% "spark-catalyst" % sparkVersion,
"org.apache.logging.log4j" % "log4j-core" % "2.17.2",
"com.typesafe" % "config" % "1.3.4",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.6.1",
"org.apache.hadoop" % "hadoop-mapreduce-client-core" % "2.7.7",
"org.apache.hadoop" % "hadoop-common" % "2.7.7",
"org.apache.avro" % "avro" % "1.8.2",
"org.apache.xbean" % "xbean-asm6-shaded" % "4.10",
"org.apache.spark" % "spark-sql-kafka-0-10_2.12" % "3.1.3"
)
val cloudProvidedDeps = localAndCloudDiffDependencies.map(x => x % "provided")
val localAndCloudCommonDependencies = Seq(
"com.microsoft.azure" % "azure-eventhubs-spark_2.12" % "2.3.21",
"org.apache.kafka" % "kafka-clients" % "3.1.0",
"com.google.guava" % "guava" % "31.1-jre",
"org.testng" % "testng" % "6.14.3" % Test,
"org.mockito" % "mockito-core" % "3.1.0" % Test,
"nl.jqno.equalsverifier" % "equalsverifier" % "3.1.13" % Test,
"org.scalatest" %% "scalatest" % "3.0.9" % Test,
"it.unimi.dsi" % "fastutil" % "8.1.1",
"org.mvel" % "mvel2" % "2.2.8.Final",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.12.6",
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % "2.12.6",
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-csv" % "2.12.6",
"com.jasonclawson" % "jackson-dataformat-hocon" % "1.1.0",
"com.redislabs" %% "spark-redis" % "3.0.0",
"org.scalatest" %% "scalatest" % "3.0.9" % "test",
"org.apache.xbean" % "xbean-asm6-shaded" % "4.10",
"com.google.protobuf" % "protobuf-java" % "2.6.1",
"net.snowflake" % "snowflake-jdbc" % "3.13.18",
"net.snowflake" % "spark-snowflake_2.12" % "2.10.0-spark_3.2",
"org.apache.commons" % "commons-lang3" % "3.12.0",
"org.xerial" % "sqlite-jdbc" % "3.36.0.3",
"com.github.changvvb" %% "jackson-module-caseclass" % "1.1.1",
"com.azure.cosmos.spark" % "azure-cosmos-spark_3-1_2-12" % "4.11.1",
"org.eclipse.jetty" % "jetty-util" % "9.3.24.v20180605"
) // Common deps
val jdbcDrivers = Seq(
"com.microsoft.sqlserver" % "mssql-jdbc" % "10.2.0.jre8",
"net.snowflake" % "snowflake-jdbc" % "3.13.18",
"org.postgresql" % "postgresql" % "42.3.4",
)
// For azure
lazy val root = (project in file("."))
.settings(
name := "feathr",
// To assemble, run sbt assembly -java-home /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home
assembly / mainClass := Some("com.linkedin.feathr.offline.job.FeatureJoinJob"),
libraryDependencies ++= cloudProvidedDeps,
libraryDependencies ++= localAndCloudCommonDependencies,
libraryDependencies ++= jdbcDrivers,
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion % "provided"
)
)
// If you want to build jar for feathr test, enable this and comment out root
//lazy val localCliJar = (project in file("."))
// .settings(
// name := "feathr-cli",
// // To assemble, run sbt assembly -java-home /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home
// assembly / mainClass := Some("com.linkedin.feathr.cli.FeatureExperimentEntryPoint"),
// // assembly / mainClass := Some("com.linkedin.feathr.offline.job.FeatureJoinJob"),
// libraryDependencies ++= localAndCloudDiffDependencies,
// libraryDependencies ++= localAndCloudCommonDependencies,
// libraryDependencies ++= Seq(
// // See https://stackoverflow.com/questions/55923943/how-to-fix-unsupported-class-file-major-version-55-while-executing-org-apache
// "org.apache.spark" %% "spark-core" % sparkVersion exclude("org.apache.xbean","xbean-asm6-shaded")
// )
// )
// To assembly with certain java version: sbt assembly -java-home "/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home"
// Please specify the feathr version feathr-assembly-X.X.X-SNAPSHOT.jar
// To execute the jar: java -jar target/scala-2.12/feathr-assembly-0.5.0-SNAPSHOT.jar (Please use the latest version of the jar)
assembly / assemblyMergeStrategy := {
// See https://stackoverflow.com/questions/17265002/hadoop-no-filesystem-for-scheme-file
// See https://stackoverflow.com/questions/62232209/classnotfoundexception-caused-by-java-lang-classnotfoundexception-csv-default
case PathList("META-INF","services",xs @ _*) => MergeStrategy.filterDistinctLines
case PathList("META-INF",xs @ _*) => MergeStrategy.discard
case _ => MergeStrategy.first
}
// Some systems(like Hadoop) use different versinos of protobuf(like v2) so we have to shade it.
assemblyShadeRules in assembly := Seq(
ShadeRule.rename("com.google.protobuf.**" -> "shade.protobuf.@1").inAll,
)