I am a fresher in Big Data. I have database in MySQL and I don't know how to import this to Apache Kafka for streaming process. And then get data from consumer. Please give me advice.
Asked
Active
Viewed 7,650 times
6
-
Please read [stackoverflow.com/help/how-to-ask](http://stackoverflow.com/help/how-to-ask) and edit your post with more information, sample code, and the steps you have taken so far. This information will make it more likely that someone can help you. – abarisone Jun 30 '16 at 09:05
1 Answers
3
Regarding putting mysql data into kafka I'd suggest having a look at the kafka-connect jdbc connector.
Next, you have a flurry of stream processing frameworks, with their own benefits and drawbacks, to choose from in order to do computation on your streaming data stored in kafka:
- Apache Spark and in particular Spark streaming
- Apache Flink
- Apache Storm
- Kafka streams

BenFradet
- 453
- 3
- 10
-
1try "http://debezium.io/" -> This is also one of the good connector we are using. – Renukaradhya Apr 19 '17 at 09:56