Can it be possible to parse/read the multi-line JSON published to Kafka topic by spark using Structured streaming?
if you are using spark version greater than 2.2, following would work.
spark.read .option("multiLine", true).option("mode", "PERMISSIVE") .json("/path/to/user.json")