我正在使用Kafka
数据,然后将数据流传输到HDFS
。
存储在Kafka
主题trial
中的数据如下:
hadoop
hive
hive
kafka
hive
但是,当我提交代码时,它会返回:
线程“ main”中的异常
org.apache.spark.sql.streaming.StreamingQueryException: Text data source supports only a single column, and you have 7 columns.;
=== Streaming Query ===
Identifier: [id = 2f3c7433-f511-49e6-bdcf-4275b1f1229a, runId = 9c0f7a35-118a-469c-990f-af00f55d95fb]
Current Committed Offsets: {KafkaSource[Subscribe[trial]]: {"trial":{"2":13,"1":13,"3":12,"0":13}}}
Current Available Offsets: {KafkaSource[Subscribe[trial]]: {"trial":{"2":13,"1":13,"3":12,"0":14}}}
我的问题是:如上所示,存储在Kafka
中的数据仅包含一个列,为什么程序会说存在7 columns
?
感谢您的帮助。
我的spark-streaming
代码:
def main(args: Array[String]): Unit = {
val spark = SparkSession
.builder.master("local[4]")
.appName("SpeedTester")
.config("spark.driver.memory", "3g")
.getOrCreate()
val ds = spark.readStream
.format("kafka")
.option("kafka.bootstrap.servers", "192.168.95.20:9092")
.option("subscribe", "trial")
.option("startingOffsets" , "earliest")
.load()
.writeStream
.format("text")
.option("path", "hdfs://192.168.95.21:8022/tmp/streaming/fixed")
.option("checkpointLocation", "/tmp/checkpoint")
.start()
.awaitTermination()
}
答案 0 :(得分:0)
Structured Streaming + Kafka Integration Guide中对此进行了解释:
源代码中的每一行都具有以下架构:
列类型
二进制密钥
值二进制
主题字符串
分区int
偏移长
时间戳长
timestampType int
确切给出了七列。如果您只想写入有效负载(值),请选择它并转换为字符串:
spark.readStream
...
.load()
.selectExpr("CAST(value as string)")
.writeStream
...
.awaitTermination()