build jar(sbt)

Posted satyrs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了build jar(sbt)相关的知识,希望对你有一定的参考价值。

project 中遇到

  1. log file & project file
  2. build.sbt
  3. startup.sh
  4. then command line:  > sh startup.sh

example:

.sbt

name := "Simple Project" //project name
version := "1.0"  //project version
scalaVersion := "2.11.8" //scala version
libraryDependencies += "org.apache.spark" %% "spark-core" % "2.1.0"
libraryDependencies += "org.apache.spark" % "spark-streaming_2.11" % "2.1.0"
libraryDependencies += "org.apache.spark" % "spark-streaming-kafka-0-8_2.11" % "2.1.0"
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.2.11"
//all
Dependencies should be aware of the version compatibility

.sh

 /usr/local/spark/bin/spark-submit --driver-class-path /usr/local/spark/jars/*:/usr/local/spark/jars/kafka/* --class "org.apache.spark.examples.streaming.KafkaWordCount" /usr/local/spark/mycode/kafka/target/scala-2.11/simple-project_2.11-1.0.jar 127.0.0.1:2181 1 sex 1
spark-submit目录 
参数:
--driver-class-path  spark中的所有jars以及kafka中所有jars

--class  工程文件main所在class + 生成的jar的位置
127.0.0.1:2181 : zookeeper-server kafka-server ip+port

1 sex 1: consumer group;topics; number of consumers

REFERENCE:
http://dblab.xmu.edu.cn

 

 

 

以上是关于build jar(sbt)的主要内容,如果未能解决你的问题,请参考以下文章

提取 Databricks 集群依赖项并将它们添加到 build.sbt 以在 Azure DevOps 中构建 jar

执行 JAR 后 Scala SBT Shell 中的 java.lang.NoSuchMethodError [重复]

如何从 sbt 的包中排除程序集?

使用 sbt-assembly 来自单个项目的具有不同外部依赖项的多个可执行 jar 文件

覆盖 SBT 插件中的映射

如何将 SBT 类附加到 Intellij Idea?