following is already been achieved
- Kafka Producer pulling data from twitter using Spark Streaming.
- Kafka Consumer ingesting data into Hive External table(on HDFS).
while this is working fine so far.
there is only one issue I am facing, while my app insert data into Hive table, it created small file with each row data per file.
below is the code
// Define which topics to read from
val topic = "topic_twitter"
val groupId = "group-1"
val consumer = KafkaConsumer(topic, groupId, "localhost:2181")
//Create SparkContext
val sparkContext = new SparkContext("local[2]", "KafkaConsumer")
//Create HiveContext
val hiveContext = new org.apache.spark.sql.hive.HiveContext(sparkContext)
hiveContext.sql("CREATE EXTERNAL TABLE IF NOT EXISTS twitter_data (tweetId BIGINT, tweetText STRING, userName STRING, tweetTimeStamp STRING, userLang STRING)")
hiveContext.sql("CREATE EXTERNAL TABLE IF NOT EXISTS demo (foo STRING)")
Hive demo table already populated with one single record.
Kafka consumer loop thru the data for topic ="topic_twitter" in process each row and populate in Hive table
val hiveSql = "INSERT INTO TABLE twitter_data SELECT STACK( 1," +
tweetID +"," +
tweetText +"," +
userName +"," +
tweetTimeStamp +"," +
userLang + ") FROM demo limit 1"
hiveContext.sql(hiveSql)
below are the images from my Hadoop environment. twitter_data, demo
last 10 files created in HDFS
as you can see the file size is not more than 200KB, is there a way I merge these files in one file?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…