I have a following use case :
- parse the json from stream (kafka topic)
- extract some fields (likely 35 out of 100 fields)
- Build a json out of those fields
- Publish it to pub/sub for further processing
My implementation is very much java language bound. Can anyone suggest optimal solution for this ? and why is it optimal ?
For json parsing, I am thinking of https://bolerio.github.io/mjson/