I am trying to ingest the json message into AZURE Event Hub My problem is size of json message since Event hub has a limit of 1MB I have one big json message which consists of multiple json message
DATA = [{"Id": "393092", "UID": "7f0034ee", "date": "2023-01-06", "f_id": "430", "origin": "CN"}, {"Id": "393092", "UID": "7f0034ee", "date": "2023-01-06", "f_id": "430", "origin": "CN"}, {"Id": "393092", "UID": "7f0034ee", "date": "2023-01-06", "f_id": "430", "origin": "CN"}]
This Data is an example. DATA is already in json format but DATA contains 10000+ json event with same format I would like to ingest this json message into event hub
Can anyone help me out How can I ingest this one big message into event hub? by slicing it or some other way
Thanks a lot !
Yoonsik
I tried slicing it but the number of events within one json message always different and very big...