我将 NestJs 与 KafkaJs 一起使用,我有两个微服务订阅相同的 EventPattern,但是其中一个微服务只需要 EventPattern 的单一类型的有效负载,例如:
事件模式::DoThing
value: {
jobType: "job1",
otherStuff: {}
}
value: {
jobType: "job2",
otherStuff: {}
}
value: {
jobType: "job3",
otherStuff: {}
}
在微服务 1 中,我只关心 DoThing -> job1,但是
需要 DoThing -> job2、job3 等。
有没有一种方法可以从嵌套中进行过滤,而不是在消费完成后进行简单的过滤。
欢迎任何建议。