Skip to content

Instantly share code, notes, and snippets.

@fancellu
Last active June 28, 2023 15:35
Show Gist options
  • Star 56 You must be signed in to star a gist
  • Fork 22 You must be signed in to fork a gist
  • Save fancellu/f78e11b1808db2727d76 to your computer and use it in GitHub Desktop.
Save fancellu/f78e11b1808db2727d76 to your computer and use it in GitHub Desktop.
Kafka Producer/Consumer Example in Scala
import java.util
import org.apache.kafka.clients.consumer.KafkaConsumer
import scala.collection.JavaConverters._
object ConsumerExample extends App {
import java.util.Properties
val TOPIC="test"
val props = new Properties()
props.put("bootstrap.servers", "localhost:9092")
props.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer")
props.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer")
props.put("group.id", "something")
val consumer = new KafkaConsumer[String, String](props)
consumer.subscribe(util.Collections.singletonList(TOPIC))
while(true){
val records=consumer.poll(100)
for (record<-records.asScala){
println(record)
}
}
}
object ProducerExample extends App {
import java.util.Properties
import org.apache.kafka.clients.producer._
val props = new Properties()
props.put("bootstrap.servers", "localhost:9092")
props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer")
props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer")
val producer = new KafkaProducer[String, String](props)
val TOPIC="test"
for(i<- 1 to 50){
val record = new ProducerRecord(TOPIC, "key", s"hello $i")
producer.send(record)
}
val record = new ProducerRecord(TOPIC, "key", "the end "+new java.util.Date)
producer.send(record)
producer.close()
}
@ChandrasekaranT
Copy link

Hi
I tried using kafka_2.11-0.11.0.1 and scalaVersion := "2.10.4" when I do sbt package from the command prompt I getting the error
Below is the build.sbt content
name := "Analyze Logs"
version := "1.0"
scalaVersion := "2.10.4"
libraryDependencies += "org.apache.spark" % "spark-core_2.10" % "1.5.2"
libraryDependencies += "org.apache.spark" % "spark-streaming-twitter_2.10" % "1.5.2" % "provided"
libraryDependencies += "org.apache.spark" % "spark-streaming_2.10" % "1.5.2"
libraryDependencies += "org.apache.spark" % "spark-streaming-twitter_2.10" % "1.5.2" % "provided"
libraryDependencies += "org.apache.spark" % "spark-streaming_2.10" % "1.5.2"
libraryDependencies += "org.apache.kafka" % "kafka_2.10" % "0.8.2.1"
libraryDependencies += "org.apache.spark" % "spark-streaming-kafka-assembly_2.10" % "1.5.2"
libraryDependencies += "org.apache.spark" % "spark-streaming-kafka_2.10" % "1.5.2"
libraryDependencies += "org.apache.spark" % "spark-sql_2.10" % "1.5.2"

Error message:-

[error] Modules were resolved with conflicting cross-version suffixes in {file:/home/edureka/Desktop/code_practicals/}code_practicals:
[error] org.apache.kafka:kafka _2.11, _2.10

Could any one help me how to resolve the above error and what need to update in the sbt file?
regards
T.Chandrasekaran

@mdaafaq
Copy link

mdaafaq commented Dec 7, 2017

libraryDependencies += "org.apache.spark" %% "spark-sql-kafka-0-8" % "(your spark version)" % "provided"

@dinushkaf
Copy link

remove all and add following in build.sbt file

resolvers += Resolver.bintrayRepo("cakesolutions", "maven")
libraryDependencies += "net.cakesolutions" %% "scala-kafka-client" % "1.1.1"

@sanniheruwala
Copy link

Above example works fine simply with below dependencies:-

"org.apache.kafka" % "kafka_2.11" % "1.1.1"
scala 2.11
spark 2.3.0

Ran it through spark shell with below commands

spark2-shell --packages org.apache.kafka:kafka_2.11:1.1.1

@anigos
Copy link

anigos commented Feb 25, 2019

"org.apache.kafka" % "kafka_2.11" % "1.1.1" this worked fine for me.

name := "myApp"
version := "0.1"
scalaVersion := "2.11.12"
val sparkVersion = "2.3.0"

libraryDependencies ++= Seq(
"org.apache.bahir" %% "spark-streaming-twitter" % sparkVersion,
"org.apache.spark" %% "spark-core" % sparkVersion,
"org.apache.spark" % "spark-sql_2.11" % sparkVersion,
"org.apache.spark" %% "spark-streaming" % sparkVersion,
"org.apache.kafka" % "kafka_2.11" % "1.1.1"
)

@sasikumarkbt
Copy link

I'm using eclipse IDE getting below error. Any idea what is the issue.
log4j:WARN No appenders could be found for logger (org.apache.kafka.clients.producer.ProducerConfig).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

@HasnainMG
Copy link

Hi, I am new to Kafka (using for only 3 days now) but I think
[error] Modules were resolved with conflicting cross-version suffixes in {file:/home/edureka/Desktop/code_practicals/}code_practicals:
[error] org.apache.kafka:kafka _2.11, _2.10

this means that you should use scala version 2.11 instead of 2.10
correct me if I am wrong...

@fancellu
Copy link
Author

A full kafkasteams example here
https://github.com/fancellu/kafkastreams

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment