我正在尝试将数据从程序发送到安全的 Kafka 集群(IBM Cloud 上的 EventStreams - Cloud Foundry Services),然后在我的消费者应用程序(即火花流)中,我试图从相同的卡夫卡源。
这是Properties
我在生产者内部设置的:
def getProperties: Properties = {
val configs = new Properties()
configs.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer")
configs.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer")
configs.put(ProducerConfig.CLIENT_ID_CONFIG, "kafka-java-console-sample-producer")
configs.put(ProducerConfig.ACKS_CONFIG, "1")
configs.put(CommonClientConfigs.BOOTSTRAP_SERVERS_CONFIG, "<url:port for 5 brokers>")
configs.put(CommonClientConfigs.SECURITY_PROTOCOL_CONFIG, "SASL_SSL")
configs.put(SaslConfigs.SASL_MECHANISM, "PLAIN")
configs.put(SaslConfigs.SASL_JAAS_CONFIG, "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"token\" password=\"" + "<some apikey here>" + "\";")
configs.put(SslConfigs.SSL_PROTOCOL_CONFIG, "TLSv1.2")
configs.put(SslConfigs.SSL_ENABLED_PROTOCOLS_CONFIG, "TLSv1.2")
configs.put(SslConfigs.SSL_ENDPOINT_IDENTIFICATION_ALGORITHM_CONFIG, "HTTPS")
configs
}
这是我用来将数据发送到 Kafka 集群的代码:
val producer = new KafkaProducer[String , String](getProperties)
/** Reading the file line by line */
for (line <- file.getLines) {
/** Sending the lines to the $topic inside kafka cluster initialized inside $producer */
val data = new ProducerRecord[String , String](topic , "key" , line)
producer.send(data)
}
我能够确认这确实将数据发送到 Kafka 集群,因为我能够使用 IBM 云提供的 Grafana 指标查看进入集群的数据。
现在在我的 spark 流代码中,这是我尝试从 kafka 源中读取的方式:
val df = spark.readStream
.format("kafka")
.option("subscribe", "raw_weather")
.option("kafka.bootstrap.servers", "<url:port for the same 5 brokers>")
.option("kafka.security.protocol", "SASL_SSL")
.option("kafka.sasl.mechanism" , "PLAIN")
.option("kafka.sasl.jaas.config", "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"token\" password=\"" + "<that same password given above>" + "\";")
.option("kafka.ssl.protocol", "TLSv1.2")
.option("kafka.ssl.enabled.protocols", "TLSv1.2")
.option("kafka.ssl.endpoint.identification.algorithm", "HTTPS")
.load()
.selectExpr("CAST(value as STRING)")
.as[String]
其次是:
val query= df.writeStream
.outputMode(OutputMode.Append())
.foreachBatch((df: DataFrame , id: Long) => {
println(df.count() + " " + id)
})
.trigger(Trigger.ProcessingTime(1))
.start()
query.awaitTermination()
我不确定为什么,但我的 Spark Streaming 根本无法从源读取数据。当我启动 spark 流程序时,它会在输出中显示:
19/05/19 04:22:28 DEBUG SparkEnv: Using serializer: class org.apache.spark.serializer.JavaSerializer
19/05/19 04:22:28 INFO SparkEnv: Registering MapOutputTracker
19/05/19 04:22:28 INFO SparkEnv: Registering BlockManagerMaster
19/05/19 04:22:28 INFO SparkEnv: Registering OutputCommitCoordinator
0 0
有一次,当我再次运行我的制作人时,火花流仍然存在于0 0
. 我不确定我在这里写错了什么。
编辑:让消费者运行超过 7 个小时,仍然没有变化