Cannot see message while sinking kafka stream and cannot see print message in flink 1.2
问题 My goal is to use kafka to read in a string in json format, do a filter to the string and then sink the message out (still in json string format). For testing purpose, my input string message looks like: {"a":1,"b":2} And my code of implementation is: def main(args: Array[String]): Unit = { // parse input arguments val params = ParameterTool.fromArgs(args) if (params.getNumberOfParameters < 4) { println("Missing parameters!\n" + "Usage: Kafka --input-topic <topic> --output-topic <topic> " + "