I've set up the example project and built it. I'm able to run the WordCount program as expected. But when I run the SocketTextWordCount, I'm not getting any results printed out.
- I send data in through nc (localhost:9999 on both sides)
- In the web console for the running job, I can see that there are messages being sent/received
But I never see the counts.print() output printed out anywhere, even after killing the nc session.
EDIT - when I change it around to print results to a text file, no problem. So the issue seems to be that counts.print() isn't properly writing to the stdout of the console I'm running the example in.