Re: Business Rules / Decision Tree on Kafka Messages

2019-03-11 Thread Russell Jurney
I just had to drop in and say that this may be a good fit for basic machine learning in the form of simple decision trees ? You could train simple decision tree classifier using examples of your messages and their associated output message types. Then y

Re: Business Rules / Decision Tree on Kafka Messages

2019-03-11 Thread Daniel Hinojosa
I would go with Kafka Streams. Kafka Streams is just a library. So you can make a simple or complex application. You can include a rules engine or machine learning model as a dependency as well as a kafka dependency and based on your message send to being different topics. Run a number of your app

Business Rules / Decision Tree on Kafka Messages

2019-03-11 Thread Greenhorn Techie
Hi, Our Kafka message has 10-15 fields. On the consumer side, we need to take some action based on a combination of fields. For example, if Field A = X and Field B = Y, then push the message to Topic T1. However, if Field C = P or Field D = Q, then push the message into Topic T2. Likewise, we have