You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Following the wordcount.js example, I mimicked it into the following. Everything works, even if I get the end of the stream and write to a file or log it to console it works as supposed to, but it doesn't publish to another topic. Does that have a bug? Any clues?
the .to function defaults to "send" mode which takes either a Buffer or a String. You need to change the mode of .to function to "buffer", which can take a Buffer or an Object. See this example
Hi! Following the wordcount.js example, I mimicked it into the following. Everything works, even if I get the end of the stream and write to a file or log it to console it works as supposed to, but it doesn't publish to another topic. Does that have a bug? Any clues?
Node version: v15.13.0
OS: Mac
package.json:
"dependencies": { "kafka-streams": "^5.0.0", "kafkajs": "^1.15.0", "kafkajs-avro": "^1.0.4", "kafkajs-stream": "^0.0.12", "minimist": "^1.2.5", "node-rdkafka": "^2.10.1" } }
The text was updated successfully, but these errors were encountered: