I am trying to join KStream with GlobalKTable, the join is not completely on keys.
GlobalKTable<String, Employee> employeesDetails = builder.globalTable("EMPLOYEE_TOPIC",..);
KStream<String,String> empIdOverLoginUserId = builder.stream("LOG_TOPIC", ….);
I want to join empIdOverLoginUserId with employeesDetails over empIdOverLoginUserId's value over employeesDetails's key.
Any clue?