I have installed Kafka "kafka_2.12-0.11.0.0".
Started services of both zookeper and Kafka-server.
Then i created a java project (kafka lib included) on IntelliJ.
I also included an SQLite jar needed for the JDBC connect.
I initially thought of using confluent.kafka-connect, but since mine is a windows based machine CLIplatform doesn't work.
So i wrote a stand alone java program to connect to my sqlite DB fetched data and sent this as a message using a custom Kafka-Producer program creating a topic "connect-test".
I received the same data using a custom Kafka-Consumer program. The purpose of this test, is to see if i can do the same with an existing windows based, enterprise application to stream data into a warehouse for Data Analytics platforms. I understand that i have done it in stand-alone mode, but am i in the right direction?
Can you please suggest if there is a better way for me to integrate my enterprise application (java based Custom API + oracle DB +another layer on top of Oracle DB) with Kafka?
Would really appreciate your help.